/*!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.5.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: fmedia_wp761
-- ------------------------------------------------------
-- Server version	10.5.25-MariaDB

/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpsl_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wpsl_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `priority` tinyint(3) unsigned NOT NULL DEFAULT 10,
  `args` varchar(191) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=7749 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_actionscheduler_actions`
--

LOCK TABLES `wpsl_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wpsl_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wpsl_actionscheduler_actions` VALUES (7746,'action_scheduler/migration_hook','complete','2023-10-26 09:47:21','2023-10-26 09:47:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1698313641;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1698313641;}',1,1,'2023-10-26 09:47:59','2023-10-26 09:47:59',0,NULL),(7747,'wp_mail_smtp_summary_report_email','pending','2023-10-30 14:00:00','2023-10-30 14:00:00',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1698674400;s:18:\"\0*\0first_timestamp\";i:1698674400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1698674400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(7748,'wp_mail_smtp_admin_notifications_update','pending','2023-10-26 09:51:37','2023-10-26 09:51:37',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1698313897;s:18:\"\0*\0first_timestamp\";i:1698313897;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1698313897;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `wpsl_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wpsl_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_actionscheduler_claims`
--

LOCK TABLES `wpsl_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wpsl_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wpsl_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_actionscheduler_groups`
--

LOCK TABLES `wpsl_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wpsl_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wpsl_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wp_mail_smtp');
/*!40000 ALTER TABLE `wpsl_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wpsl_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_actionscheduler_logs`
--

LOCK TABLES `wpsl_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wpsl_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wpsl_actionscheduler_logs` VALUES (1,7746,'action created','2023-10-26 09:46:21','2023-10-26 09:46:21'),(2,7746,'action started via WP Cron','2023-10-26 09:47:59','2023-10-26 09:47:59'),(3,7746,'action complete via WP Cron','2023-10-26 09:47:59','2023-10-26 09:47:59'),(4,7747,'action created','2023-10-26 09:48:52','2023-10-26 09:48:52'),(5,7748,'action created','2023-10-26 09:50:37','2023-10-26 09:50:37');
/*!40000 ALTER TABLE `wpsl_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_commentmeta`
--

DROP TABLE IF EXISTS `wpsl_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_commentmeta`
--

LOCK TABLES `wpsl_commentmeta` WRITE;
/*!40000 ALTER TABLE `wpsl_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_comments`
--

DROP TABLE IF EXISTS `wpsl_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_comments`
--

LOCK TABLES `wpsl_comments` WRITE;
/*!40000 ALTER TABLE `wpsl_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_e_events`
--

DROP TABLE IF EXISTS `wpsl_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_e_events`
--

LOCK TABLES `wpsl_e_events` WRITE;
/*!40000 ALTER TABLE `wpsl_e_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_e_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_e_submissions`
--

DROP TABLE IF EXISTS `wpsl_e_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_e_submissions`
--

LOCK TABLES `wpsl_e_submissions` WRITE;
/*!40000 ALTER TABLE `wpsl_e_submissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_e_submissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_e_submissions_actions_log`
--

DROP TABLE IF EXISTS `wpsl_e_submissions_actions_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_e_submissions_actions_log`
--

LOCK TABLES `wpsl_e_submissions_actions_log` WRITE;
/*!40000 ALTER TABLE `wpsl_e_submissions_actions_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_e_submissions_actions_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_e_submissions_values`
--

DROP TABLE IF EXISTS `wpsl_e_submissions_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_e_submissions_values`
--

LOCK TABLES `wpsl_e_submissions_values` WRITE;
/*!40000 ALTER TABLE `wpsl_e_submissions_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_e_submissions_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_links`
--

DROP TABLE IF EXISTS `wpsl_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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 '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_links`
--

LOCK TABLES `wpsl_links` WRITE;
/*!40000 ALTER TABLE `wpsl_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_options`
--

DROP TABLE IF EXISTS `wpsl_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=9397 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_options`
--

LOCK TABLES `wpsl_options` WRITE;
/*!40000 ALTER TABLE `wpsl_options` DISABLE KEYS */;
INSERT INTO `wpsl_options` VALUES (1,'siteurl','https://esigo.futuremediatrix.com','yes'),(2,'home','https://esigo.futuremediatrix.com','yes'),(3,'blogname','ESIGO','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','ardy@futuremediatrix.com','yes'),(7,'start_of_week','0','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','d/m/Y','yes'),(24,'time_format','H:i','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:180:{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:34:\"wpcode/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"wpcode/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"wpcode/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"wpcode/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"wpcode/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"wpcode/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"wpcode/([^/]+)/embed/?$\";s:39:\"index.php?wpcode=$matches[1]&embed=true\";s:27:\"wpcode/([^/]+)/trackback/?$\";s:33:\"index.php?wpcode=$matches[1]&tb=1\";s:35:\"wpcode/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?wpcode=$matches[1]&paged=$matches[2]\";s:42:\"wpcode/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?wpcode=$matches[1]&cpage=$matches[2]\";s:31:\"wpcode/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?wpcode=$matches[1]&page=$matches[2]\";s:23:\"wpcode/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"wpcode/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"wpcode/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"wpcode/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"wpcode/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"wpcode/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:52:\"wpcode_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?wpcode_type=$matches[1]&feed=$matches[2]\";s:47:\"wpcode_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?wpcode_type=$matches[1]&feed=$matches[2]\";s:28:\"wpcode_type/([^/]+)/embed/?$\";s:44:\"index.php?wpcode_type=$matches[1]&embed=true\";s:40:\"wpcode_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?wpcode_type=$matches[1]&paged=$matches[2]\";s:22:\"wpcode_type/([^/]+)/?$\";s:33:\"index.php?wpcode_type=$matches[1]\";s:56:\"wpcode_location/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?wpcode_location=$matches[1]&feed=$matches[2]\";s:51:\"wpcode_location/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?wpcode_location=$matches[1]&feed=$matches[2]\";s:32:\"wpcode_location/([^/]+)/embed/?$\";s:48:\"index.php?wpcode_location=$matches[1]&embed=true\";s:44:\"wpcode_location/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?wpcode_location=$matches[1]&paged=$matches[2]\";s:26:\"wpcode_location/([^/]+)/?$\";s:37:\"index.php?wpcode_location=$matches[1]\";s:52:\"wpcode_tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?wpcode_tags=$matches[1]&feed=$matches[2]\";s:47:\"wpcode_tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?wpcode_tags=$matches[1]&feed=$matches[2]\";s:28:\"wpcode_tags/([^/]+)/embed/?$\";s:44:\"index.php?wpcode_tags=$matches[1]&embed=true\";s:40:\"wpcode_tags/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?wpcode_tags=$matches[1]&paged=$matches[2]\";s:22:\"wpcode_tags/([^/]+)/?$\";s:33:\"index.php?wpcode_tags=$matches[1]\";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:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:35:\"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"mc4wp-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"elementor-hf/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"elementor-hf/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"elementor-hf/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"elementor-hf/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"elementor-hf/([^/]+)/embed/?$\";s:45:\"index.php?elementor-hf=$matches[1]&embed=true\";s:33:\"elementor-hf/([^/]+)/trackback/?$\";s:39:\"index.php?elementor-hf=$matches[1]&tb=1\";s:41:\"elementor-hf/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&paged=$matches[2]\";s:48:\"elementor-hf/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&cpage=$matches[2]\";s:37:\"elementor-hf/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?elementor-hf=$matches[1]&page=$matches[2]\";s:29:\"elementor-hf/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"elementor-hf/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"elementor-hf/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"elementor-hf/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";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=17&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:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$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: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]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:16:{i:0;s:19:\"akismet/akismet.php\";i:1;s:33:\"bizmax-toolkit/bizmax-toolkit.php\";i:2;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:35:\"cs-framework/codestar-framework.php\";i:5;s:32:\"duplicate-page/duplicatepage.php\";i:6;s:31:\"elementor-pro/elementor-pro.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:9;s:9:\"hello.php\";i:10;s:35:\"insert-headers-and-footers/ihaf.php\";i:11;s:23:\"loco-translate/loco.php\";i:12;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:13;s:47:\"one-click-demo-import/one-click-demo-import.php\";i:14;s:27:\"updraftplus/updraftplus.php\";i:15;s:27:\"wp-optimize/wp-optimize.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/akismet/akismet.php\";i:1;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/themes/bizmax-wp/assets/css/gutenberg.css\";i:2;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/themes/bizmax-wp/assets/js/main.js\";i:3;s:116:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/themes/bizmax-wp/assets/css/bizmax-default.css\";i:4;s:110:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/themes/bizmax-wp/assets/css/meanmenu.css\";}','no'),(40,'template','bizmax-wp','yes'),(41,'stylesheet','bizmax-wp','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','57155','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:27:\"wp-optimize/wp-optimize.php\";a:2:{i:0;s:13:\"WPO_Uninstall\";i:1;s:7:\"actions\";}}','no'),(80,'timezone_string','Asia/Singapore','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','17','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','6650','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1724484985','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','55853','yes'),(100,'wpsl_user_roles','a:6:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:65:{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:10:\"loco_admin\";b:1;s:18:\"bcn_manage_options\";b:1;s:20:\"wpcode_edit_snippets\";b:1;s:24:\"wpcode_activate_snippets\";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;}}s:10:\"translator\";a:2:{s:4:\"name\";s:10:\"Translator\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:10:\"loco_admin\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:20:{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 -->\";}i:7;a:1:{s:7:\"content\";s:200:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:categories {\"showEmpty\":true} /--></div>\n<!-- /wp:group -->\";}i:8;a:1:{s:7:\"content\";s:254:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recent Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts {\"postsToShow\":6,\"displayPostDate\":true,\"displayFeaturedImage\":true} /--></div>\n<!-- /wp:group -->\";}i:9;a:1:{s:7:\"content\";s:174:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tags</h2>\n<!-- /wp:heading -->\n\n<!-- wp:tag-cloud /--></div>\n<!-- /wp:group -->\";}i:10;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:11;a:1:{s:7:\"content\";s:200:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:categories {\"showEmpty\":true} /--></div>\n<!-- /wp:group -->\";}i:12;a:1:{s:7:\"content\";s:254:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recent Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts {\"postsToShow\":6,\"displayPostDate\":true,\"displayFeaturedImage\":true} /--></div>\n<!-- /wp:group -->\";}i:13;a:1:{s:7:\"content\";s:174:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tags</h2>\n<!-- /wp:heading -->\n\n<!-- wp:tag-cloud /--></div>\n<!-- /wp:group -->\";}i:14;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:15;a:1:{s:7:\"content\";s:200:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:categories {\"showEmpty\":true} /--></div>\n<!-- /wp:group -->\";}i:16;a:1:{s:7:\"content\";s:254:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Recent Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts {\"postsToShow\":6,\"displayPostDate\":true,\"displayFeaturedImage\":true} /--></div>\n<!-- /wp:group -->\";}i:17;a:1:{s:7:\"content\";s:174:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Tags</h2>\n<!-- /wp:heading -->\n\n<!-- wp:tag-cloud /--></div>\n<!-- /wp:group -->\";}i:18;a:1:{s:7:\"content\";s:417:\"<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">About Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus eu justo vel lectus mollis vulputate nec ornare metus. Pellentesque lacinia, urna convallis pulvinar viverra</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\";}i:19;a:1:{s:7:\"content\";s:464:\"<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:legacy-widget {\"idBase\":\"nav_menu\",\"instance\":{\"encoded\":\"YToxOntzOjg6Im5hdl9tZW51IjtpOjE1O30=\",\"hash\":\"37ef66e11994f7591aff24e153da784d\",\"raw\":{\"nav_menu\":15}}} /--></div>\n<!-- /wp:group -->\";}i:20;a:1:{s:7:\"content\";s:471:\"<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Important Links</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:legacy-widget {\"idBase\":\"nav_menu\",\"instance\":{\"encoded\":\"YToxOntzOjg6Im5hdl9tZW51IjtpOjEzO30=\",\"hash\":\"97d83d7922abcdf46325a28bdcd93c28\",\"raw\":{\"nav_menu\":13}}} /--></div>\n<!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"bizmax-blog-sidebar\";a:6:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-7\";i:4;s:7:\"block-8\";i:5;s:7:\"block-9\";}s:27:\"bizmax-blog-archive-sidebar\";a:6:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";i:2;s:8:\"block-10\";i:3;s:8:\"block-11\";i:4;s:8:\"block-12\";i:5;s:8:\"block-13\";}s:26:\"bizmax-blog-single-sidebar\";a:4:{i:0;s:8:\"block-14\";i:1;s:8:\"block-15\";i:2;s:8:\"block-16\";i:3;s:8:\"block-17\";}s:15:\"bizmax-footer-1\";a:1:{i:0;s:8:\"block-18\";}s:15:\"bizmax-footer-2\";a:1:{i:0;s:8:\"block-19\";}s:15:\"bizmax-footer-3\";a:1:{i:0;s:8:\"block-20\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:17:{i:1719955884;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:1719959072;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:1719974880;a:1:{s:29:\"mc4wp_refresh_mailchimp_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1719977072;a:3:{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;}}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;}}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:1719978240;a:2:{s:29:\"wpo_smush_clear_backup_images\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:37:\"wpo_reset_webp_conversion_test_result\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"wpo_daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1719978322;a:3:{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;}}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;}}}i:1719978324;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:1719978914;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:1719979164;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:1719981745;a:2:{s:14:\"updraft_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1719998807;a:1:{s:33:\"updraftplus_clean_temporary_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1720005831;a:1:{s:19:\"wpo_purge_old_cache\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:19:\"wpo_purge_old_cache\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1720021440;a:1:{s:26:\"wpo_minify_purge_old_cache\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1720063472;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;}}}i:1720496640;a:1:{s:21:\"wpo_weekly_cron_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1720511838;a:1:{s:26:\"wpcode_usage_tracking_cron\";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;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'recovery_keys','a:0:{}','yes'),(121,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1692762953;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\";}}}}','no'),(122,'_transient_wp_core_block_css_files','a:496:{i:0;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/archives/editor-rtl.css\";i:1;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/archives/editor-rtl.min.css\";i:2;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/archives/editor.css\";i:3;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/archives/editor.min.css\";i:4;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/archives/style-rtl.css\";i:5;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/archives/style-rtl.min.css\";i:6;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/archives/style.css\";i:7;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/archives/style.min.css\";i:8;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/editor-rtl.css\";i:9;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/editor-rtl.min.css\";i:10;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/editor.css\";i:11;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/editor.min.css\";i:12;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/style-rtl.css\";i:13;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/style-rtl.min.css\";i:14;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/style.css\";i:15;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/style.min.css\";i:16;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/theme-rtl.css\";i:17;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/theme-rtl.min.css\";i:18;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/theme.css\";i:19;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/audio/theme.min.css\";i:20;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/avatar/editor-rtl.css\";i:21;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/avatar/editor-rtl.min.css\";i:22;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/avatar/editor.css\";i:23;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/avatar/editor.min.css\";i:24;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/avatar/style-rtl.css\";i:25;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/avatar/style-rtl.min.css\";i:26;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/avatar/style.css\";i:27;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/avatar/style.min.css\";i:28;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/block/editor-rtl.css\";i:29;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/block/editor-rtl.min.css\";i:30;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/block/editor.css\";i:31;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/block/editor.min.css\";i:32;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/button/editor-rtl.css\";i:33;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/button/editor-rtl.min.css\";i:34;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/button/editor.css\";i:35;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/button/editor.min.css\";i:36;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/button/style-rtl.css\";i:37;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/button/style-rtl.min.css\";i:38;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/button/style.css\";i:39;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/button/style.min.css\";i:40;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/buttons/editor-rtl.css\";i:41;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/buttons/editor-rtl.min.css\";i:42;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/buttons/editor.css\";i:43;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/buttons/editor.min.css\";i:44;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/buttons/style-rtl.css\";i:45;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/buttons/style-rtl.min.css\";i:46;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/buttons/style.css\";i:47;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/buttons/style.min.css\";i:48;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/calendar/style-rtl.css\";i:49;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/calendar/style-rtl.min.css\";i:50;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/calendar/style.css\";i:51;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/calendar/style.min.css\";i:52;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/categories/editor-rtl.css\";i:53;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/categories/editor-rtl.min.css\";i:54;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/categories/editor.css\";i:55;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/categories/editor.min.css\";i:56;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/categories/style-rtl.css\";i:57;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/categories/style-rtl.min.css\";i:58;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/categories/style.css\";i:59;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/categories/style.min.css\";i:60;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/editor-rtl.css\";i:61;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/editor-rtl.min.css\";i:62;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/editor.css\";i:63;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/editor.min.css\";i:64;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/style-rtl.css\";i:65;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/style-rtl.min.css\";i:66;s:92:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/style.css\";i:67;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/style.min.css\";i:68;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/theme-rtl.css\";i:69;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/theme-rtl.min.css\";i:70;s:92:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/theme.css\";i:71;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/code/theme.min.css\";i:72;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/columns/editor-rtl.css\";i:73;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/columns/editor-rtl.min.css\";i:74;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/columns/editor.css\";i:75;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/columns/editor.min.css\";i:76;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/columns/style-rtl.css\";i:77;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/columns/style-rtl.min.css\";i:78;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/columns/style.css\";i:79;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/columns/style.min.css\";i:80;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comment-content/style-rtl.css\";i:81;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comment-content/style-rtl.min.css\";i:82;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comment-content/style.css\";i:83;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comment-content/style.min.css\";i:84;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comment-template/style-rtl.css\";i:85;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comment-template/style-rtl.min.css\";i:86;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comment-template/style.css\";i:87;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comment-template/style.min.css\";i:88;s:120:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css\";i:89;s:124:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css\";i:90;s:116:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination-numbers/editor.css\";i:91;s:120:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination-numbers/editor.min.css\";i:92;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination/editor-rtl.css\";i:93;s:116:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination/editor-rtl.min.css\";i:94;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination/editor.css\";i:95;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination/editor.min.css\";i:96;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination/style-rtl.css\";i:97;s:115:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination/style-rtl.min.css\";i:98;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination/style.css\";i:99;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-pagination/style.min.css\";i:100;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-title/editor-rtl.css\";i:101;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-title/editor-rtl.min.css\";i:102;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-title/editor.css\";i:103;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments-title/editor.min.css\";i:104;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments/editor-rtl.css\";i:105;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments/editor-rtl.min.css\";i:106;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments/editor.css\";i:107;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments/editor.min.css\";i:108;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments/style-rtl.css\";i:109;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments/style-rtl.min.css\";i:110;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments/style.css\";i:111;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/comments/style.min.css\";i:112;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/cover/editor-rtl.css\";i:113;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/cover/editor-rtl.min.css\";i:114;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/cover/editor.css\";i:115;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/cover/editor.min.css\";i:116;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/cover/style-rtl.css\";i:117;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/cover/style-rtl.min.css\";i:118;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/cover/style.css\";i:119;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/cover/style.min.css\";i:120;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/details/editor-rtl.css\";i:121;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/details/editor-rtl.min.css\";i:122;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/details/editor.css\";i:123;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/details/editor.min.css\";i:124;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/details/style-rtl.css\";i:125;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/details/style-rtl.min.css\";i:126;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/details/style.css\";i:127;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/details/style.min.css\";i:128;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/editor-rtl.css\";i:129;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/editor-rtl.min.css\";i:130;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/editor.css\";i:131;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/editor.min.css\";i:132;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/style-rtl.css\";i:133;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/style-rtl.min.css\";i:134;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/style.css\";i:135;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/style.min.css\";i:136;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/theme-rtl.css\";i:137;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/theme-rtl.min.css\";i:138;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/theme.css\";i:139;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/embed/theme.min.css\";i:140;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/file/editor-rtl.css\";i:141;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/file/editor-rtl.min.css\";i:142;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/file/editor.css\";i:143;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/file/editor.min.css\";i:144;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/file/style-rtl.css\";i:145;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/file/style-rtl.min.css\";i:146;s:92:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/file/style.css\";i:147;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/file/style.min.css\";i:148;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/footnotes/style-rtl.css\";i:149;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/footnotes/style-rtl.min.css\";i:150;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/footnotes/style.css\";i:151;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/footnotes/style.min.css\";i:152;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/freeform/editor-rtl.css\";i:153;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/freeform/editor-rtl.min.css\";i:154;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/freeform/editor.css\";i:155;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/freeform/editor.min.css\";i:156;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/editor-rtl.css\";i:157;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/editor-rtl.min.css\";i:158;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/editor.css\";i:159;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/editor.min.css\";i:160;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/style-rtl.css\";i:161;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/style-rtl.min.css\";i:162;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/style.css\";i:163;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/style.min.css\";i:164;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/theme-rtl.css\";i:165;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/theme-rtl.min.css\";i:166;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/theme.css\";i:167;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/gallery/theme.min.css\";i:168;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/editor-rtl.css\";i:169;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/editor-rtl.min.css\";i:170;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/editor.css\";i:171;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/editor.min.css\";i:172;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/style-rtl.css\";i:173;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/style-rtl.min.css\";i:174;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/style.css\";i:175;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/style.min.css\";i:176;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/theme-rtl.css\";i:177;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/theme-rtl.min.css\";i:178;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/theme.css\";i:179;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/group/theme.min.css\";i:180;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/heading/style-rtl.css\";i:181;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/heading/style-rtl.min.css\";i:182;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/heading/style.css\";i:183;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/heading/style.min.css\";i:184;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/html/editor-rtl.css\";i:185;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/html/editor-rtl.min.css\";i:186;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/html/editor.css\";i:187;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/html/editor.min.css\";i:188;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/editor-rtl.css\";i:189;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/editor-rtl.min.css\";i:190;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/editor.css\";i:191;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/editor.min.css\";i:192;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/style-rtl.css\";i:193;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/style-rtl.min.css\";i:194;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/style.css\";i:195;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/style.min.css\";i:196;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/theme-rtl.css\";i:197;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/theme-rtl.min.css\";i:198;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/theme.css\";i:199;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/image/theme.min.css\";i:200;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-comments/style-rtl.css\";i:201;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-comments/style-rtl.min.css\";i:202;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-comments/style.css\";i:203;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-comments/style.min.css\";i:204;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-posts/editor-rtl.css\";i:205;s:109:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-posts/editor-rtl.min.css\";i:206;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-posts/editor.css\";i:207;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-posts/editor.min.css\";i:208;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-posts/style-rtl.css\";i:209;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-posts/style-rtl.min.css\";i:210;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-posts/style.css\";i:211;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/latest-posts/style.min.css\";i:212;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/list/style-rtl.css\";i:213;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/list/style-rtl.min.css\";i:214;s:92:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/list/style.css\";i:215;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/list/style.min.css\";i:216;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/media-text/editor-rtl.css\";i:217;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/media-text/editor-rtl.min.css\";i:218;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/media-text/editor.css\";i:219;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/media-text/editor.min.css\";i:220;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/media-text/style-rtl.css\";i:221;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/media-text/style-rtl.min.css\";i:222;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/media-text/style.css\";i:223;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/media-text/style.min.css\";i:224;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/more/editor-rtl.css\";i:225;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/more/editor-rtl.min.css\";i:226;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/more/editor.css\";i:227;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/more/editor.min.css\";i:228;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-link/editor-rtl.css\";i:229;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-link/editor-rtl.min.css\";i:230;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-link/editor.css\";i:231;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-link/editor.min.css\";i:232;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-link/style-rtl.css\";i:233;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-link/style-rtl.min.css\";i:234;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-link/style.css\";i:235;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-link/style.min.css\";i:236;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-submenu/editor-rtl.css\";i:237;s:115:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-submenu/editor-rtl.min.css\";i:238;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-submenu/editor.css\";i:239;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation-submenu/editor.min.css\";i:240;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation/editor-rtl.css\";i:241;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation/editor-rtl.min.css\";i:242;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation/editor.css\";i:243;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation/editor.min.css\";i:244;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation/style-rtl.css\";i:245;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation/style-rtl.min.css\";i:246;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation/style.css\";i:247;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/navigation/style.min.css\";i:248;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/nextpage/editor-rtl.css\";i:249;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/nextpage/editor-rtl.min.css\";i:250;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/nextpage/editor.css\";i:251;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/nextpage/editor.min.css\";i:252;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/page-list/editor-rtl.css\";i:253;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/page-list/editor-rtl.min.css\";i:254;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/page-list/editor.css\";i:255;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/page-list/editor.min.css\";i:256;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/page-list/style-rtl.css\";i:257;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/page-list/style-rtl.min.css\";i:258;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/page-list/style.css\";i:259;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/page-list/style.min.css\";i:260;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/paragraph/editor-rtl.css\";i:261;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/paragraph/editor-rtl.min.css\";i:262;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/paragraph/editor.css\";i:263;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/paragraph/editor.min.css\";i:264;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/paragraph/style-rtl.css\";i:265;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/paragraph/style-rtl.min.css\";i:266;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/paragraph/style.css\";i:267;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/paragraph/style.min.css\";i:268;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-author/style-rtl.css\";i:269;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-author/style-rtl.min.css\";i:270;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-author/style.css\";i:271;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-author/style.min.css\";i:272;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-comments-form/editor-rtl.css\";i:273;s:115:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-comments-form/editor-rtl.min.css\";i:274;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-comments-form/editor.css\";i:275;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-comments-form/editor.min.css\";i:276;s:110:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-comments-form/style-rtl.css\";i:277;s:114:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-comments-form/style-rtl.min.css\";i:278;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-comments-form/style.css\";i:279;s:110:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-comments-form/style.min.css\";i:280;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-date/style-rtl.css\";i:281;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-date/style-rtl.min.css\";i:282;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-date/style.css\";i:283;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-date/style.min.css\";i:284;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-excerpt/editor-rtl.css\";i:285;s:109:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-excerpt/editor-rtl.min.css\";i:286;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-excerpt/editor.css\";i:287;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-excerpt/editor.min.css\";i:288;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-excerpt/style-rtl.css\";i:289;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-excerpt/style-rtl.min.css\";i:290;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-excerpt/style.css\";i:291;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-excerpt/style.min.css\";i:292;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-featured-image/editor-rtl.css\";i:293;s:116:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-featured-image/editor-rtl.min.css\";i:294;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-featured-image/editor.css\";i:295;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-featured-image/editor.min.css\";i:296;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-featured-image/style-rtl.css\";i:297;s:115:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-featured-image/style-rtl.min.css\";i:298;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-featured-image/style.css\";i:299;s:111:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-featured-image/style.min.css\";i:300;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-navigation-link/style-rtl.css\";i:301;s:116:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-navigation-link/style-rtl.min.css\";i:302;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-navigation-link/style.css\";i:303;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-navigation-link/style.min.css\";i:304;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-template/editor-rtl.css\";i:305;s:110:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-template/editor-rtl.min.css\";i:306;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-template/editor.css\";i:307;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-template/editor.min.css\";i:308;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-template/style-rtl.css\";i:309;s:109:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-template/style-rtl.min.css\";i:310;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-template/style.css\";i:311;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-template/style.min.css\";i:312;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-terms/style-rtl.css\";i:313;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-terms/style-rtl.min.css\";i:314;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-terms/style.css\";i:315;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-terms/style.min.css\";i:316;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-title/style-rtl.css\";i:317;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-title/style-rtl.min.css\";i:318;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-title/style.css\";i:319;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/post-title/style.min.css\";i:320;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/preformatted/style-rtl.css\";i:321;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/preformatted/style-rtl.min.css\";i:322;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/preformatted/style.css\";i:323;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/preformatted/style.min.css\";i:324;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/editor-rtl.css\";i:325;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/editor-rtl.min.css\";i:326;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/editor.css\";i:327;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/editor.min.css\";i:328;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/style-rtl.css\";i:329;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/style-rtl.min.css\";i:330;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/style.css\";i:331;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/style.min.css\";i:332;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/theme-rtl.css\";i:333;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/theme-rtl.min.css\";i:334;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/theme.css\";i:335;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/pullquote/theme.min.css\";i:336;s:117:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination-numbers/editor-rtl.css\";i:337;s:121:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css\";i:338;s:113:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination-numbers/editor.css\";i:339;s:117:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination-numbers/editor.min.css\";i:340;s:109:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination/editor-rtl.css\";i:341;s:113:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination/editor-rtl.min.css\";i:342;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination/editor.css\";i:343;s:109:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination/editor.min.css\";i:344;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination/style-rtl.css\";i:345;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination/style-rtl.min.css\";i:346;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination/style.css\";i:347;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-pagination/style.min.css\";i:348;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-title/style-rtl.css\";i:349;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-title/style-rtl.min.css\";i:350;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-title/style.css\";i:351;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query-title/style.min.css\";i:352;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query/editor-rtl.css\";i:353;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query/editor-rtl.min.css\";i:354;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query/editor.css\";i:355;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/query/editor.min.css\";i:356;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/quote/style-rtl.css\";i:357;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/quote/style-rtl.min.css\";i:358;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/quote/style.css\";i:359;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/quote/style.min.css\";i:360;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/quote/theme-rtl.css\";i:361;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/quote/theme-rtl.min.css\";i:362;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/quote/theme.css\";i:363;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/quote/theme.min.css\";i:364;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/read-more/style-rtl.css\";i:365;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/read-more/style-rtl.min.css\";i:366;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/read-more/style.css\";i:367;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/read-more/style.min.css\";i:368;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/rss/editor-rtl.css\";i:369;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/rss/editor-rtl.min.css\";i:370;s:92:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/rss/editor.css\";i:371;s:96:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/rss/editor.min.css\";i:372;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/rss/style-rtl.css\";i:373;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/rss/style-rtl.min.css\";i:374;s:91:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/rss/style.css\";i:375;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/rss/style.min.css\";i:376;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/editor-rtl.css\";i:377;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/editor-rtl.min.css\";i:378;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/editor.css\";i:379;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/editor.min.css\";i:380;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/style-rtl.css\";i:381;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/style-rtl.min.css\";i:382;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/style.css\";i:383;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/style.min.css\";i:384;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/theme-rtl.css\";i:385;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/theme-rtl.min.css\";i:386;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/theme.css\";i:387;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/search/theme.min.css\";i:388;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/editor-rtl.css\";i:389;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/editor-rtl.min.css\";i:390;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/editor.css\";i:391;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/editor.min.css\";i:392;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/style-rtl.css\";i:393;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/style-rtl.min.css\";i:394;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/style.css\";i:395;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/style.min.css\";i:396;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/theme-rtl.css\";i:397;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/theme-rtl.min.css\";i:398;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/theme.css\";i:399;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/separator/theme.min.css\";i:400;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/shortcode/editor-rtl.css\";i:401;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/shortcode/editor-rtl.min.css\";i:402;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/shortcode/editor.css\";i:403;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/shortcode/editor.min.css\";i:404;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-logo/editor-rtl.css\";i:405;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-logo/editor-rtl.min.css\";i:406;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-logo/editor.css\";i:407;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-logo/editor.min.css\";i:408;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-logo/style-rtl.css\";i:409;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-logo/style-rtl.min.css\";i:410;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-logo/style.css\";i:411;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-logo/style.min.css\";i:412;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-tagline/editor-rtl.css\";i:413;s:109:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-tagline/editor-rtl.min.css\";i:414;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-tagline/editor.css\";i:415;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-tagline/editor.min.css\";i:416;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-title/editor-rtl.css\";i:417;s:107:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-title/editor-rtl.min.css\";i:418;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-title/editor.css\";i:419;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-title/editor.min.css\";i:420;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-title/style-rtl.css\";i:421;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-title/style-rtl.min.css\";i:422;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-title/style.css\";i:423;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/site-title/style.min.css\";i:424;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-link/editor-rtl.css\";i:425;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-link/editor-rtl.min.css\";i:426;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-link/editor.css\";i:427;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-link/editor.min.css\";i:428;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-links/editor-rtl.css\";i:429;s:109:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-links/editor-rtl.min.css\";i:430;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-links/editor.css\";i:431;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-links/editor.min.css\";i:432;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-links/style-rtl.css\";i:433;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-links/style-rtl.min.css\";i:434;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-links/style.css\";i:435;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/social-links/style.min.css\";i:436;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/spacer/editor-rtl.css\";i:437;s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/spacer/editor-rtl.min.css\";i:438;s:95:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/spacer/editor.css\";i:439;s:99:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/spacer/editor.min.css\";i:440;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/spacer/style-rtl.css\";i:441;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/spacer/style-rtl.min.css\";i:442;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/spacer/style.css\";i:443;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/spacer/style.min.css\";i:444;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/editor-rtl.css\";i:445;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/editor-rtl.min.css\";i:446;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/editor.css\";i:447;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/editor.min.css\";i:448;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/style-rtl.css\";i:449;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/style-rtl.min.css\";i:450;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/style.css\";i:451;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/style.min.css\";i:452;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/theme-rtl.css\";i:453;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/theme-rtl.min.css\";i:454;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/theme.css\";i:455;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/table/theme.min.css\";i:456;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/tag-cloud/style-rtl.css\";i:457;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/tag-cloud/style-rtl.min.css\";i:458;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/tag-cloud/style.css\";i:459;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/tag-cloud/style.min.css\";i:460;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/template-part/editor-rtl.css\";i:461;s:110:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/template-part/editor-rtl.min.css\";i:462;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/template-part/editor.css\";i:463;s:106:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/template-part/editor.min.css\";i:464;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/template-part/theme-rtl.css\";i:465;s:109:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/template-part/theme-rtl.min.css\";i:466;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/template-part/theme.css\";i:467;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/template-part/theme.min.css\";i:468;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/term-description/style-rtl.css\";i:469;s:112:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/term-description/style-rtl.min.css\";i:470;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/term-description/style.css\";i:471;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/term-description/style.min.css\";i:472;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/text-columns/editor-rtl.css\";i:473;s:109:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/text-columns/editor-rtl.min.css\";i:474;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/text-columns/editor.css\";i:475;s:105:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/text-columns/editor.min.css\";i:476;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/text-columns/style-rtl.css\";i:477;s:108:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/text-columns/style-rtl.min.css\";i:478;s:100:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/text-columns/style.css\";i:479;s:104:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/text-columns/style.min.css\";i:480;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/verse/style-rtl.css\";i:481;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/verse/style-rtl.min.css\";i:482;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/verse/style.css\";i:483;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/verse/style.min.css\";i:484;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/editor-rtl.css\";i:485;s:102:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/editor-rtl.min.css\";i:486;s:94:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/editor.css\";i:487;s:98:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/editor.min.css\";i:488;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/style-rtl.css\";i:489;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/style-rtl.min.css\";i:490;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/style.css\";i:491;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/style.min.css\";i:492;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/theme-rtl.css\";i:493;s:101:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/theme-rtl.min.css\";i:494;s:93:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/theme.css\";i:495;s:97:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-includes/blocks/video/theme.min.css\";}','yes'),(124,'https_detection_errors','a:0:{}','yes'),(152,'finished_updating_comment_type','1','yes'),(158,'current_theme','Bizmax WP','yes'),(159,'theme_mods_bizmax-wp','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"menu-1\";i:0;s:6:\"menu-2\";i:13;}s:18:\"custom_css_post_id\";i:6791;s:11:\"custom_logo\";i:6649;}','yes'),(160,'theme_switched','','yes'),(162,'recently_activated','a:0:{}','yes'),(164,'wpcf7','a:2:{s:7:\"version\";s:3:\"5.8\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1692763164;s:7:\"version\";s:3:\"5.8\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(165,'elementor_active_kit','8','yes'),(166,'elementor_font_display','swap','yes'),(169,'hfe_plugin_is_activated','yes','yes'),(170,'bizmax_wp_options','a:46:{s:13:\"enable_topbar\";s:1:\"1\";s:19:\"topbar_contact_list\";s:0:\"\";s:16:\"topbar_page_list\";a:4:{i:0;a:2:{s:5:\"title\";s:8:\"About Us\";s:4:\"link\";s:43:\"https://esigo.futuremediatrix.com/about-us/\";}i:1;a:2:{s:5:\"title\";s:17:\"News &amp; Events\";s:4:\"link\";s:49:\"https://esigo.futuremediatrix.com/news-and-event/\";}i:2;a:2:{s:5:\"title\";s:16:\"Managed Services\";s:4:\"link\";s:51:\"https://esigo.futuremediatrix.com/managed-services/\";}i:3;a:2:{s:5:\"title\";s:10:\"Contact Us\";s:4:\"link\";s:45:\"https://esigo.futuremediatrix.com/contact-us/\";}}s:12:\"header_style\";s:1:\"1\";s:20:\"enable_header_sticky\";s:1:\"1\";s:17:\"enable_image_logo\";s:1:\"1\";s:10:\"image_logo\";a:8:{s:3:\"url\";s:71:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/ESi-Go.png\";s:2:\"id\";s:4:\"6647\";s:5:\"width\";s:4:\"3508\";s:6:\"height\";s:4:\"1453\";s:9:\"thumbnail\";s:79:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/ESi-Go-150x150.png\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:11:\"ESi-Go-logo\";s:11:\"description\";s:0:\"\";}s:21:\"image_logo_max_height\";s:2:\"90\";s:9:\"text_logo\";s:6:\"Bizmax\";s:16:\"search_form_show\";s:1:\"0\";s:19:\"header_contact_show\";s:0:\"\";s:20:\"header_contact_title\";s:19:\"Need help? Call us:\";s:19:\"header_contact_info\";s:19:\"(+800) 1234 5678 90\";s:9:\"body_font\";a:10:{s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-weight\";s:6:\"normal\";s:10:\"font-style\";s:0:\"\";s:6:\"subset\";s:0:\"\";s:9:\"font-size\";s:2:\"15\";s:11:\"line-height\";s:2:\"20\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#636363\";s:4:\"type\";s:6:\"google\";s:4:\"unit\";s:2:\"px\";}s:12:\"heading_font\";a:10:{s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:6:\"subset\";s:0:\"\";s:9:\"font-size\";s:2:\"15\";s:11:\"line-height\";s:2:\"20\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#232323\";s:4:\"type\";s:6:\"google\";s:4:\"unit\";s:2:\"px\";}s:15:\"body_other_font\";a:10:{s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:6:\"subset\";s:0:\"\";s:9:\"font-size\";s:2:\"15\";s:11:\"line-height\";s:2:\"20\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#232323\";s:4:\"type\";s:6:\"google\";s:4:\"unit\";s:2:\"px\";}s:21:\"breadcrumb_background\";a:8:{s:3:\"url\";s:74:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/post_9-1.jpeg\";s:2:\"id\";s:4:\"4867\";s:5:\"width\";s:4:\"1285\";s:6:\"height\";s:3:\"509\";s:9:\"thumbnail\";s:82:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/post_9-1-150x150.jpeg\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:6:\"post_9\";s:11:\"description\";s:0:\"\";}s:16:\"blog_page_layout\";s:13:\"right-sidebar\";s:14:\"enable_blog_bc\";s:1:\"1\";s:15:\"blog_main_bc_bg\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:20:\"blog_bc_custom_title\";s:11:\"Latest Post\";s:21:\"blog_show_author_name\";s:1:\"1\";s:19:\"blog_show_post_date\";s:1:\"1\";s:22:\"blog_show_post_comment\";s:1:\"1\";s:19:\"blog_archive_layout\";s:13:\"right-sidebar\";s:17:\"enable_archive_bg\";s:1:\"1\";s:18:\"blog_archive_bc_bg\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:24:\"archive_show_author_name\";s:1:\"1\";s:22:\"archive_show_post_date\";s:1:\"1\";s:25:\"archive_show_post_comment\";s:1:\"1\";s:19:\"post_default_layout\";s:13:\"right-sidebar\";s:23:\"single_show_author_name\";s:1:\"1\";s:21:\"single_show_post_date\";s:1:\"1\";s:24:\"single_show_post_comment\";s:1:\"1\";s:12:\"search_bc_bg\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:13:\"enable_footer\";s:1:\"0\";s:17:\"footer_bg_default\";a:8:{s:3:\"url\";s:69:\"https://bizmax.laralink.com/wp-content/uploads/2023/07/footer_bg.jpeg\";s:2:\"id\";s:4:\"4739\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"592\";s:9:\"thumbnail\";s:77:\"https://bizmax.laralink.com/wp-content/uploads/2023/07/footer_bg-150x150.jpeg\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:9:\"footer_bg\";s:11:\"description\";s:0:\"\";}s:20:\"footer_heading_color\";s:7:\"#ffffff\";s:18:\"footer_title_color\";s:4:\"#fff\";s:17:\"footer_text_color\";s:7:\"#cccccc\";s:21:\"footer_copyright_text\";s:105:\"© Copyright <a href=\"#\">Bizmax</a>. Design &amp; Development By <a target=\"_blank\" href=\"#\">Laralink</a>\";s:20:\"bizmax_wp_custom_css\";s:0:\"\";s:22:\"bizmax_wp_head_scripts\";s:0:\"\";s:22:\"bizmax_wp_body_scripts\";s:0:\"\";s:16:\"enable_preloader\";s:1:\"1\";s:14:\"preloader_icon\";a:8:{s:3:\"url\";s:74:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\";s:2:\"id\";s:4:\"6649\";s:5:\"width\";s:3:\"512\";s:6:\"height\";s:3:\"512\";s:9:\"thumbnail\";s:82:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png\";s:3:\"alt\";s:9:\"icon-logo\";s:5:\"title\";s:9:\"icon-logo\";s:11:\"description\";s:0:\"\";}}','yes'),(171,'elementor_version','3.15.3','yes'),(172,'elementor_install_history','a:1:{s:6:\"3.15.3\";i:1692776339;}','yes'),(173,'elementor_events_db_version','1.0.0','no'),(174,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(175,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(176,'widget_bcn_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(178,'_hfe_db_version','1.6.15','yes'),(179,'mc4wp_version','4.9.6','yes'),(180,'bsf_analytics_installed_time','1692763165','no'),(181,'_elementor_installed_time','1692763165','yes'),(182,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{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:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;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:27:{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:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(183,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:69:\"Elementor\'s 2023 Black Friday Sale: The Deals You\'ve Been Waiting For\";s:7:\"excerpt\";s:152:\"Why settle for less when you can unlock the full power of Elementor? This Black Friday, we\'re offering deals so good, they\'ll make you do a double-take.\";s:7:\"created\";i:1700561623;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:130:\"https://elementor.com/blog/black-friday-cyber-monday-2023/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:86:\"New in Elementor 3.17 - Enhance Visitor Experience With AJAX, Faster Websites and More\";s:7:\"excerpt\";s:173:\"Elementor 3.17 introduces AJAX Loading for Loop Grids, improves image loading speed, adds the ability to access past prompts and content generated by Elementor AI, and more.\";s:7:\"created\";i:1698835967;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:150:\"https://elementor.com/blog/elementor-317-loop-grid-ajax-loading-rating-widget/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:73:\"Elementor 3.16 - Faster Performance, Flexible Design, and more Accessible\";s:7:\"excerpt\";s:210:\"Elementor 3.16 activates Flexbox Containers by default for new websites, improves site loading speed with performance enhancements, increases accessibility for visitors who use assistive technologies, and more.\";s:7:\"created\";i:1695134049;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/316-faster-performance-flexible-design-accessibility/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(186,'mc4wp_flash_messages','a:0:{}','no'),(190,'wp_calendar_block_has_published_posts','1','yes'),(194,'nav_menus_created_posts','a:0:{}','yes'),(201,'elementor_library_category_children','a:0:{}','yes'),(223,'elementor_pro_license_key','*********','yes'),(224,'_elementor_pro_license_v2_data','a:2:{s:7:\"timeout\";i:1720027761;s:5:\"value\";s:71:\"{\"success\":true,\"license\":\"valid\",\"expires\":\"01.01.2030\",\"features\":[]}\";}','yes'),(225,'elementor_pro_version','3.15.0','yes'),(226,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(227,'_elementor_pro_installed_time','1692776339','yes'),(228,'elementor_submissions_db_version','5','yes'),(229,'elementor_fonts_manager_font_types','a:0:{}','yes'),(230,'elementor_fonts_manager_fonts','a:0:{}','yes'),(231,'elementor_custom_icon_sets_config','a:0:{}','yes'),(235,'_elementor_pro_api_requests_lock','a:1:{s:11:\"get_version\";i:1719271441;}','yes'),(247,'_transient_health-check-site-status-result','{\"good\":18,\"recommended\":4,\"critical\":1}','yes'),(288,'elementor_allow_tracking','yes','yes'),(289,'elementor_tracker_last_send','1719385087','yes'),(294,'bsf_analytics_optin','yes','no'),(297,'elementor_pro_theme_builder_conditions','a:1:{s:5:\"popup\";a:1:{i:8022;a:1:{i:0;s:15:\"include/general\";}}}','yes'),(300,'elementor_controls_usage','a:5:{s:7:\"wp-post\";a:9:{s:7:\"heading\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:8;s:22:\"typography_font_weight\";i:8;s:20:\"typography_font_size\";i:6;s:28:\"text_shadow_text_shadow_type\";i:2;s:22:\"typography_font_family\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:4;s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:28;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:28;s:21:\"space_between_widgets\";i:2;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:3:{s:11:\"hide_mobile\";i:2;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:9;s:11:\"css_classes\";i:5;s:6:\"margin\";i:6;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:0:{}s:14:\"_section_style\";a:0:{}}}}s:7:\"section\";a:2:{s:5:\"count\";i:22;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:6:\"layout\";i:4;s:15:\"stretch_section\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:7;s:16:\"background_image\";i:5;s:16:\"background_color\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:3;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:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:7;s:11:\"css_classes\";i:5;s:6:\"margin\";i:2;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:16;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:4;s:10:\"text_color\";i:6;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:22:\"typography_font_weight\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_line_height\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:7:\"_margin\";i:2;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:10:{s:10:\"icon_color\";i:2;s:18:\"icon_primary_color\";i:2;s:20:\"icon_secondary_color\";i:2;s:9:\"icon_size\";i:2;s:12:\"icon_spacing\";i:2;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:13:\"border_radius\";i:2;s:12:\"icon_padding\";i:2;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:2;s:18:\"hover_border_color\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}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:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:9:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_line_height\";i:2;s:28:\"text_shadow_text_shadow_type\";i:2;s:30:\"icon_typography_text_transform\";i:2;s:27:\"icon_typography_font_family\";i:2;s:16:\"text_color_hover\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:2;s:12:\"_css_classes\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:5;s:4:\"link\";i:5;s:5:\"align\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:22:\"typography_font_weight\";i:4;s:17:\"button_text_color\";i:4;s:16:\"background_color\";i:5;s:11:\"hover_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:25:\"button_hover_border_color\";i:4;s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;}}}}}s:7:\"wp-page\";a:19:{s:6:\"column\";a:2:{s:5:\"count\";i:69;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:69;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:30;s:6:\"margin\";i:38;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:13;s:15:\"animation_delay\";i:11;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:9;s:11:\"hide_tablet\";i:9;s:11:\"hide_mobile\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:49;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:7;s:15:\"stretch_section\";i:16;s:8:\"overflow\";i:3;s:16:\"content_position\";i:8;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:19;}}s:8:\"advanced\";a:4:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:25;s:7:\"padding\";i:15;s:11:\"css_classes\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:9;s:11:\"hide_tablet\";i:9;s:11:\"hide_mobile\";i:9;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:2;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:4;}}}}s:20:\"bizmax-section-title\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:7:{s:20:\"bizmax_section_title\";i:8;s:19:\"bizmax_section_desc\";i:6;s:20:\"bizmax_section_label\";i:7;s:19:\"bizmax_stitle_style\";i:8;s:22:\"bizmax_stitle_position\";i:2;s:19:\"bizmax_stitle_color\";i:2;s:18:\"bizmax_stext_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:17;s:10:\"image_size\";i:17;s:22:\"image_custom_dimension\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:10:{s:14:\"_element_width\";i:8;s:21:\"_element_custom_width\";i:6;s:7:\"_margin\";i:6;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:9:\"_offset_x\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:12:\"_css_classes\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:4;s:11:\"hide_tablet\";i:4;s:11:\"hide_mobile\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:6;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:35;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:35;s:11:\"header_size\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:35;s:21:\"typography_typography\";i:35;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:35;s:22:\"typography_font_weight\";i:35;s:28:\"text_stroke_text_stroke_type\";i:6;s:28:\"text_shadow_text_shadow_type\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:7;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:6;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:7;s:11:\"hide_tablet\";i:7;s:11:\"hide_mobile\";i:7;}}}}s:15:\"navigation-menu\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:6;s:14:\"schema_support\";i:6;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:6;s:12:\"submenu_icon\";i:6;s:13:\"link_redirect\";i:6;s:8:\"dropdown\";i:6;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:6;s:15:\"color_menu_item\";i:6;s:18:\"bg_color_menu_item\";i:6;s:21:\"color_menu_item_hover\";i:6;s:24:\"bg_color_menu_item_hover\";i:6;s:22:\"color_menu_item_active\";i:6;s:25:\"bg_color_menu_item_active\";i:6;s:26:\"padding_vertical_menu_item\";i:6;s:26:\"menu_typography_typography\";i:6;s:27:\"menu_typography_font_weight\";i:6;s:28:\"padding_horizontal_menu_item\";i:6;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:6;s:19:\"toggle_border_width\";i:6;s:20:\"toggle_border_radius\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:6;s:12:\"_css_classes\";i:6;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:6;s:13:\"_border_width\";i:6;s:13:\"_border_color\";i:6;}}}}s:21:\"bizmax-service-detail\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:6;s:15:\"bizmax_img_icon\";i:6;s:15:\"bizmax_btn_text\";i:6;s:15:\"bizmax_btn_link\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:6;s:11:\"hide_tablet\";i:6;s:11:\"hide_mobile\";i:6;}}}}s:14:\"bizmax-contact\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:7;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:6;s:11:\"hide_tablet\";i:6;s:11:\"hide_mobile\";i:6;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:23;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:23;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:12;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:6;s:11:\"hide_tablet\";i:6;s:11:\"hide_mobile\";i:6;}}}}s:29:\"bizmax-service-detail-feature\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}s:18:\"section_custom_css\";a:0:{}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:10:\"bizmax-faq\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}}}}s:19:\"bizmax-contact-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:2:{s:7:\"c_lists\";i:1;s:19:\"bizmax_stitle_color\";i:1;}}}}s:21:\"bizmax-contact-modern\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:7:\"form_id\";i:1;s:18:\"bizmax_contact_img\";i:1;s:21:\"bizmax_contact_bg_img\";i:1;s:20:\"bizmax_contact_title\";i:1;}}}}s:13:\"loop-carousel\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:4:{s:14:\"section_layout\";a:3:{s:11:\"template_id\";i:2;s:14:\"posts_per_page\";i:2;s:14:\"slides_to_show\";i:2;}s:13:\"section_query\";a:7:{s:18:\"post_query_include\";i:2;s:20:\"post_query_posts_ids\";i:2;s:19:\"post_query_query_id\";i:1;s:26:\"post_query_include_authors\";i:1;s:18:\"post_query_exclude\";i:1;s:27:\"post_query_avoid_duplicates\";i:1;s:17:\"post_query_offset\";i:1;}s:25:\"section_carousel_settings\";a:1:{s:5:\"speed\";i:2;}s:27:\"section_navigation_settings\";a:2:{s:24:\"navigation_previous_icon\";i:2;s:20:\"navigation_next_icon\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:21:\"_element_custom_width\";i:2;}}s:5:\"style\";a:1:{s:25:\"section_design_navigation\";a:2:{s:11:\"arrows_size\";i:2;s:17:\"arrow_hover_color\";i:2;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:18:\"bizmax-hero-slider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:1:{s:12:\"bizmax_lists\";i:1;}s:16:\"bizmax_tab_three\";a:1:{s:18:\"bizmax_social_list\";i:1;}}}}s:23:\"bizmax-about-experience\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"buconz_tab_content\";a:6:{s:20:\"bizmax_exp_thumb_img\";i:1;s:20:\"bizmax_exp_shape_one\";i:1;s:23:\"bizmax_exp_box_thumb_bg\";i:1;s:19:\"bizmax_exp_box_icon\";i:1;s:18:\"bizmax_exp_box_num\";i:1;s:19:\"bizmax_exp_box_desc\";i:1;}}}}s:15:\"bizmax-services\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:20:\"bizmax_service_title\";i:6;s:19:\"bizmax_service_desc\";i:6;s:20:\"bizmax_service_thumb\";i:6;s:15:\"bizmax_btn_link\";i:6;s:15:\"bizmax_icon_img\";i:6;}}}}s:18:\"bizmax-brand-logos\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:1:{s:12:\"bizmax_lists\";i:1;}s:23:\"bizmax_settings_section\";a:5:{s:20:\"bizmax_slider_column\";i:1;s:24:\"bizmax_slider_column_tab\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;s:17:\"bizmax_slider_nav\";i:1;}}}}s:19:\"bizmax-testimonials\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:12:\"bizmax_lists\";i:1;s:17:\"bizmax_title_desc\";i:1;s:21:\"bizmax_testimonial_bg\";i:1;}s:23:\"bizmax_settings_section\";a:4:{s:26:\"bizmax_slider_column_large\";i:1;s:20:\"bizmax_slider_column\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;}}}}}s:4:\"page\";a:9:{s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:7:{s:14:\"_element_width\";i:1;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:9:\"_offset_x\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:12:\"_css_classes\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:23:\"bizmax-about-experience\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"buconz_tab_content\";a:6:{s:20:\"bizmax_exp_thumb_img\";i:1;s:20:\"bizmax_exp_shape_one\";i:1;s:23:\"bizmax_exp_box_thumb_bg\";i:1;s:19:\"bizmax_exp_box_icon\";i:1;s:18:\"bizmax_exp_box_num\";i:1;s:19:\"bizmax_exp_box_desc\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:18;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:14;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:2;}}}}s:20:\"bizmax-section-title\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:20:\"bizmax_section_label\";i:6;s:20:\"bizmax_section_title\";i:6;s:19:\"bizmax_section_desc\";i:5;s:19:\"bizmax_stitle_style\";i:6;s:22:\"bizmax_stitle_position\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:4:{s:16:\"content_position\";i:2;s:6:\"layout\";i:6;s:15:\"stretch_section\";i:5;s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:4:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:3;s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;s:16:\"background_color\";i:1;}}}}s:15:\"bizmax-services\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:19:\"bizmax_service_desc\";i:4;s:20:\"bizmax_service_thumb\";i:4;s:15:\"bizmax_btn_link\";i:4;s:15:\"bizmax_icon_img\";i:4;s:20:\"bizmax_service_title\";i:3;}}}}s:16:\"bizmax-small-cta\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:18:\"bizmax_tab_content\";a:3:{s:16:\"bizmax_cta_title\";i:1;s:19:\"bizmax_stitle_color\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:18:\"bizmax-team-modern\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:7:\"c_lists\";i:1;s:11:\"team_layout\";i:1;s:18:\"bizmax_grid_column\";i:1;}s:16:\"settings_section\";a:1:{s:20:\"bizmax_slider_column\";i:1;}}}}s:19:\"bizmax-testimonials\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:12:\"bizmax_lists\";i:1;s:17:\"bizmax_title_desc\";i:1;s:21:\"bizmax_testimonial_bg\";i:1;}s:23:\"bizmax_settings_section\";a:4:{s:26:\"bizmax_slider_column_large\";i:1;s:20:\"bizmax_slider_column\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;}}}}}s:9:\"loop-item\";a:3:{s:14:\"call-to-action\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:4;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:4:{s:5:\"title\";i:1;s:11:\"description\";i:1;s:6:\"button\";i:1;s:4:\"link\";i:1;}s:18:\"section_main_image\";a:1:{s:8:\"bg_image\";i:1;}}s:5:\"style\";a:1:{s:12:\"button_style\";a:3:{s:23:\"button_hover_text_color\";i:1;s:29:\"button_hover_background_color\";i:1;s:25:\"button_hover_border_color\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}}s:5:\"popup\";a:3:{s:6:\"spacer\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:6;s:4:\"link\";i:6;s:11:\"header_size\";i:6;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:6;}}}}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:7:{s:11:\"boxed_width\";i:2;s:14:\"flex_direction\";i:2;s:16:\"flex_align_items\";i:2;s:8:\"flex_gap\";i:2;s:13:\"content_width\";i:2;s:20:\"flex_justify_content\";i:2;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:9:{s:7:\"padding\";i:2;s:6:\"margin\";i:2;s:21:\"_offset_orientation_h\";i:2;s:9:\"_offset_x\";i:2;s:13:\"_offset_x_end\";i:2;s:9:\"_offset_y\";i:2;s:11:\"css_classes\";i:2;s:8:\"position\";i:1;s:7:\"z_index\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}}}}}}','no'),(302,'elementor_connect_site_key','e3b84bcb37c6ec11e10f35a21e4969cc','yes'),(362,'elementor_log','a:19:{s:32:\"2cc3fadf832176ee6086ee0cb2692535\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:123:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:7:\"\0*\0line\";i:175;s:7:\"\0*\0date\";s:19:\"2023-08-28 06:53:46\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:21:\"Undefined index: data\";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:\"2023-08-28 06:53:46\";i:1;s:19:\"2023-08-28 09:11:12\";i:2;s:19:\"2023-08-28 09:25:52\";i:3;s:19:\"2023-09-18 08:32:18\";i:4;s:19:\"2023-09-21 04:24:56\";i:5;s:19:\"2023-09-21 04:25:10\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:21:\"Undefined index: data\";s:4:\"file\";s:123:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:4:\"line\";i:175;s:5:\"trace\";b:1;}}s:32:\"aa486c98fc13de0395a551200067a567\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"319956\";s:7:\"\0*\0file\";s:97:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.15.3\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-08-28 07:28:19\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:62:\"Cannot read properties of undefined (reading &#039;html&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2023-08-28 07:28:19\";i:1;s:19:\"2023-08-28 07:28:21\";i:2;s:19:\"2023-08-28 07:28:24\";i:3;s:19:\"2023-08-28 07:35:27\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1693207699\";s:7:\"message\";s:52:\"Cannot read properties of undefined (reading \'html\')\";s:3:\"url\";s:97:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.15.3\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"319956\";}}s:32:\"13297aebef0a19fe74a5e4fe2e839171\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:125:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:7:\"\0*\0line\";i:363;s:7:\"\0*\0date\";s:19:\"2023-08-28 08:41:41\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type null\";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:9;s:14:\"\0*\0times_dates\";a:9:{i:0;s:19:\"2023-08-28 08:41:41\";i:1;s:19:\"2023-08-28 08:42:07\";i:2;s:19:\"2023-08-28 08:43:39\";i:3;s:19:\"2023-08-28 08:44:22\";i:4;s:19:\"2023-08-28 08:49:00\";i:5;s:19:\"2023-08-28 08:49:42\";i:6;s:19:\"2023-08-28 09:06:30\";i:7;s:19:\"2023-08-28 09:06:43\";i:8;s:19:\"2023-08-28 09:20:28\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type null\";s:4:\"file\";s:125:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:4:\"line\";i:363;s:5:\"trace\";b:1;}}s:32:\"780d24dc506bdce3ada8389b622f6a11\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:7:\"1107192\";s:7:\"\0*\0file\";s:97:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.15.3\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-08-28 08:43:21\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:74:\"Cannot read properties of null (reading &#039;getBoundingClientRect&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:5;s:14:\"\0*\0times_dates\";a:5:{i:0;s:19:\"2023-08-28 08:43:21\";i:1;s:19:\"2023-08-28 08:49:16\";i:2;s:19:\"2023-08-28 09:07:59\";i:3;s:19:\"2023-08-28 09:19:58\";i:4;s:19:\"2023-09-18 13:53:24\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1693212201\";s:7:\"message\";s:64:\"Cannot read properties of null (reading \'getBoundingClientRect\')\";s:3:\"url\";s:97:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.15.3\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:7:\"1107192\";}}s:32:\"74ea7448893b15fc9c79a63ef77dc244\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:4:\"4095\";s:7:\"\0*\0file\";s:106:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor-document.min.js?ver=3.15.3\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2023-08-28 08:53:22\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:60:\"Cannot read properties of null (reading &#039;history&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-28 08:53:22\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1693212802\";s:7:\"message\";s:50:\"Cannot read properties of null (reading \'history\')\";s:3:\"url\";s:106:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor-document.min.js?ver=3.15.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:4:\"4095\";}}s:32:\"58fb37337126433428b9342b4ff6938d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"28722\";s:7:\"\0*\0file\";s:141:\"https://esigo.futuremediatrix.com/wp-admin/load-scripts.php?c=1&amp;loadchunk_0=jquery-core,jquery-migrate,utils,moxiejs,plupload&amp;ver=6.3\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2023-08-28 09:05:02\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of undefined (reading &#039;value&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:25;s:14:\"\0*\0times_dates\";a:25:{i:0;s:19:\"2023-08-28 09:05:02\";i:1;s:19:\"2023-08-28 09:05:18\";i:2;s:19:\"2023-08-28 09:05:25\";i:3;s:19:\"2023-09-01 09:32:13\";i:4;s:19:\"2023-09-01 09:32:20\";i:5;s:19:\"2023-09-01 09:32:37\";i:6;s:19:\"2023-09-01 09:32:48\";i:7;s:19:\"2023-09-12 04:39:12\";i:8;s:19:\"2023-09-18 08:06:33\";i:9;s:19:\"2023-09-18 08:08:55\";i:10;s:19:\"2023-09-18 08:09:04\";i:11;s:19:\"2024-04-02 21:35:00\";i:12;s:19:\"2024-04-02 22:04:05\";i:13;s:19:\"2024-04-02 22:04:10\";i:14;s:19:\"2024-04-02 22:19:32\";i:15;s:19:\"2024-04-02 22:25:12\";i:16;s:19:\"2024-04-02 22:25:16\";i:17;s:19:\"2024-04-02 22:27:20\";i:18;s:19:\"2024-04-02 22:28:31\";i:19;s:19:\"2024-04-02 22:30:44\";i:20;s:19:\"2024-04-02 22:32:56\";i:21;s:19:\"2024-04-02 22:33:58\";i:22;s:19:\"2024-04-02 22:34:35\";i:23;s:19:\"2024-04-02 23:22:07\";i:24;s:19:\"2024-04-02 23:22:17\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1693213502\";s:7:\"message\";s:53:\"Cannot read properties of undefined (reading \'value\')\";s:3:\"url\";s:141:\"https://esigo.futuremediatrix.com/wp-admin/load-scripts.php?c=1&amp;loadchunk_0=jquery-core,jquery-migrate,utils,moxiejs,plupload&amp;ver=6.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"28722\";}}s:32:\"54c32fd6cd94d9d5a5af84a6ab33e7a6\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:149:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:7:\"\0*\0line\";i:150;s:7:\"\0*\0date\";s:19:\"2023-08-28 09:11:12\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:31:\"Undefined index: condition_type\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:149:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:150;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:8:\"function\";s:28:\"normalize_template_json_item\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:2;a:3:{s:4:\"file\";s:149:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:120;s:8:\"function\";s:9:\"array_map\";}i:3;a:5:{s:4:\"file\";s:149:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:59;s:8:\"function\";s:24:\"normalize_templates_json\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:110:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/data/base/endpoint.php\";s:4:\"line\";i:158;s:8:\"function\";s:9:\"get_items\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2023-08-28 09:11:12\";i:1;s:19:\"2023-08-28 09:25:52\";i:2;s:19:\"2023-08-28 09:25:52\";i:3;s:19:\"2023-09-18 08:32:19\";i:4;s:19:\"2023-09-21 04:24:56\";i:5;s:19:\"2023-09-21 04:25:11\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:31:\"Undefined index: condition_type\";s:4:\"file\";s:149:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:150;s:5:\"trace\";b:1;}}s:32:\"e8d0a33fd4d7230fb82d6cd0bf7ac134\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:124:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor-pro/modules/query-control/module.php\";s:7:\"\0*\0line\";i:386;s:7:\"\0*\0date\";s:19:\"2023-08-28 09:19:57\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:24:\"Undefined index: display\";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:7;s:14:\"\0*\0times_dates\";a:7:{i:0;s:19:\"2023-08-28 09:19:57\";i:1;s:19:\"2023-08-28 09:39:43\";i:2;s:19:\"2023-08-28 09:39:45\";i:3;s:19:\"2023-09-18 05:46:41\";i:4;s:19:\"2023-09-18 05:46:43\";i:5;s:19:\"2023-09-18 05:57:26\";i:6;s:19:\"2023-09-18 08:03:33\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:24:\"Undefined index: display\";s:4:\"file\";s:124:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor-pro/modules/query-control/module.php\";s:4:\"line\";i:386;s:5:\"trace\";b:1;}}s:32:\"1a48d9e9962fdab7a00bd435a4e1ad19\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:115:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:113;s:7:\"\0*\0date\";s:19:\"2023-08-28 09:21:43\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";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:12;s:14:\"\0*\0times_dates\";a:12:{i:0;s:19:\"2023-08-28 09:21:43\";i:1;s:19:\"2023-08-28 09:37:03\";i:2;s:19:\"2023-08-28 09:48:39\";i:3;s:19:\"2023-08-28 10:04:49\";i:4;s:19:\"2023-09-12 03:13:38\";i:5;s:19:\"2023-09-12 04:32:57\";i:6;s:19:\"2023-09-18 05:44:25\";i:7;s:19:\"2023-09-18 05:54:31\";i:8;s:19:\"2023-09-18 05:56:51\";i:9;s:19:\"2023-09-18 08:01:59\";i:10;s:19:\"2023-09-18 08:02:06\";i:11;s:19:\"2023-09-18 08:03:16\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:115:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:113;s:5:\"trace\";b:1;}}s:32:\"2f8b22503014336f8315fad251903af4\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"917217\";s:7:\"\0*\0file\";s:97:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.15.3\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-08-29 07:36:55\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:32:\"elementorFrontend is not defined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-29 07:36:55\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1693294615\";s:7:\"message\";s:32:\"elementorFrontend is not defined\";s:3:\"url\";s:97:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.15.3\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"917217\";}}s:32:\"675acde6085e1e3747b6a336d8e53e6c\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"642692\";s:7:\"\0*\0file\";s:97:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.15.3\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-09-12 03:47:47\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:70:\"Cannot read properties of undefined (reading &#039;isDesignable&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2023-09-12 03:47:47\";i:1;s:19:\"2023-09-22 04:18:20\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1694490467\";s:7:\"message\";s:60:\"Cannot read properties of undefined (reading \'isDesignable\')\";s:3:\"url\";s:97:\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.15.3\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"642692\";}}s:32:\"b83713c6743c867f61040cd071cc663e\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/core/wp-api.php\";s:7:\"\0*\0line\";i:26;s:7:\"\0*\0date\";s:19:\"2023-10-01 14:01:15\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1036:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api-&gt;get_plugins()\n#1 /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_with_header()\n#2 /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_to_check()\n#3 /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module-&gt;get_plugins_to_check()\n#4 /home/fmedia/domains/esigo.fut\";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:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2023-10-01 14:01:15\";i:1;s:19:\"2023-10-16 04:58:30\";i:2;s:19:\"2024-04-03 12:07:14\";i:3;s:19:\"2024-05-05 12:27:09\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api->get_plugins()\n#1 /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_with_header()\n#2 /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_to_check()\n#3 /home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module->get_plugins_to_check()\n#4 /home/fmedia/domains/esigo.fut\";s:4:\"file\";s:103:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/plugins/elementor/core/wp-api.php\";s:4:\"line\";i:26;s:5:\"trace\";b:1;}}s:32:\"38d2745972e53e9e3b57c783bf055a52\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:80:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:113;s:7:\"\0*\0date\";s:19:\"2023-11-08 03:23:18\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";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:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2023-11-08 03:23:18\";i:1;s:19:\"2023-11-08 03:34:20\";i:2;s:19:\"2023-11-16 15:39:09\";i:3;s:19:\"2024-02-26 17:12:01\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:80:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:113;s:5:\"trace\";b:1;}}s:32:\"56a56b76438ba3bce077bdbedba81be5\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor-pro/modules/query-control/module.php\";s:7:\"\0*\0line\";i:386;s:7:\"\0*\0date\";s:19:\"2023-11-08 04:02:48\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:39:\"Undefined array key &quot;display&quot;\";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:\"2023-11-08 04:02:48\";i:1;s:19:\"2023-11-17 14:39:45\";i:2;s:19:\"2023-11-17 14:40:49\";i:3;s:19:\"2023-11-17 14:43:20\";i:4;s:19:\"2024-02-26 17:09:07\";i:5;s:19:\"2024-02-26 17:17:57\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:29:\"Undefined array key \"display\"\";s:4:\"file\";s:89:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor-pro/modules/query-control/module.php\";s:4:\"line\";i:386;s:5:\"trace\";b:1;}}s:32:\"3b1e9c7d60f846a39e802ddade888e5f\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:68:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/core/wp-api.php\";s:7:\"\0*\0line\";i:26;s:7:\"\0*\0date\";s:19:\"2023-11-09 03:59:45\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:2023:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/esigo.co/httpdocs/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api-&gt;get_plugins()\n#1 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_with_header()\n#2 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_to_check()\n#3 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module-&gt;get_plugins_to_check()\n#4 /home/esigo.co/httpdocs/wp-includes/class-wp-hook.php(324): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;Elementor\\Modules\\CompatibilityTag\\{closure}()\n#5 /home/esigo.co/httpdocs/wp-includes/class-wp-hook.php(348): WP_Hook-&gt;apply_filters()\n#6 /home/esigo.co/httpdocs/wp-includes/plugin.php(517): WP_Hook-&gt;do_action()\n#7 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/system-info/module.php(334): do_action()\n#8 /home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/tracker.php(241): Elementor\\Modules\\System_Info\\Module::get_allowed_reports()\n#9 /home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/tracker.php(530): Elementor\\Tracker::get_system_reports_data()\n#10 /home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/tracker.php(141): Elementor\\Tracker::get_tracking_data()\n#11 /home/esigo.co/httpdocs/wp-includes/class-wp-hook.php(324): Elementor\\Tracker::send_tracking_data()\n#12 /home/esigo.co/httpdocs/wp-includes/class-wp-hook.php(348): WP_Hook-&gt;apply_filters()\n#13 /home/esigo.co/httpdocs/wp-includes/plugin.php(565): WP_Hook-&gt;do_action()\n#14 /home/esigo.co/httpdocs/wp-cron.php(191): do_action_ref_array()\n#15 {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:13;s:14:\"\0*\0times_dates\";a:13:{i:0;s:19:\"2023-11-09 03:59:45\";i:1;s:19:\"2023-11-16 12:04:04\";i:2;s:19:\"2023-11-23 12:59:42\";i:3;s:19:\"2023-12-09 12:59:55\";i:4;s:19:\"2024-01-09 12:11:52\";i:5;s:19:\"2024-01-24 12:51:55\";i:6;s:19:\"2024-02-01 12:36:15\";i:7;s:19:\"2024-02-08 13:14:51\";i:8;s:19:\"2024-02-16 12:17:54\";i:9;s:19:\"2024-02-23 12:36:57\";i:10;s:19:\"2024-03-02 12:22:01\";i:11;s:19:\"2024-03-18 12:19:54\";i:12;s:19:\"2024-03-26 12:24:59\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1996:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/esigo.co/httpdocs/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api->get_plugins()\n#1 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_with_header()\n#2 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_to_check()\n#3 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module->get_plugins_to_check()\n#4 /home/esigo.co/httpdocs/wp-includes/class-wp-hook.php(324): Elementor\\Modules\\CompatibilityTag\\Base_Module->Elementor\\Modules\\CompatibilityTag\\{closure}()\n#5 /home/esigo.co/httpdocs/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()\n#6 /home/esigo.co/httpdocs/wp-includes/plugin.php(517): WP_Hook->do_action()\n#7 /home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/system-info/module.php(334): do_action()\n#8 /home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/tracker.php(241): Elementor\\Modules\\System_Info\\Module::get_allowed_reports()\n#9 /home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/tracker.php(530): Elementor\\Tracker::get_system_reports_data()\n#10 /home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/tracker.php(141): Elementor\\Tracker::get_tracking_data()\n#11 /home/esigo.co/httpdocs/wp-includes/class-wp-hook.php(324): Elementor\\Tracker::send_tracking_data()\n#12 /home/esigo.co/httpdocs/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()\n#13 /home/esigo.co/httpdocs/wp-includes/plugin.php(565): WP_Hook->do_action()\n#14 /home/esigo.co/httpdocs/wp-cron.php(191): do_action_ref_array()\n#15 {main}\n  thrown\";s:4:\"file\";s:68:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/core/wp-api.php\";s:4:\"line\";i:26;s:5:\"trace\";b:1;}}s:32:\"bad98f762cbcc36424949b9b5fa255ce\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:88:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:7:\"\0*\0line\";i:175;s:7:\"\0*\0date\";s:19:\"2023-11-17 13:49:17\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:36:\"Undefined array key &quot;data&quot;\";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:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-17 13:49:17\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:26:\"Undefined array key \"data\"\";s:4:\"file\";s:88:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:4:\"line\";i:175;s:5:\"trace\";b:1;}}s:32:\"ea01ba1b62f0021969adc171c0f82063\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:114:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:7:\"\0*\0line\";i:150;s:7:\"\0*\0date\";s:19:\"2023-11-17 13:49:17\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:46:\"Undefined array key &quot;condition_type&quot;\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:114:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:150;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:8:\"function\";s:28:\"normalize_template_json_item\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:2;a:3:{s:4:\"file\";s:114:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:120;s:8:\"function\";s:9:\"array_map\";}i:3;a:5:{s:4:\"file\";s:114:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:59;s:8:\"function\";s:24:\"normalize_templates_json\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:75:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/data/base/endpoint.php\";s:4:\"line\";i:158;s:8:\"function\";s:9:\"get_items\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-17 13:49:17\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:36:\"Undefined array key \"condition_type\"\";s:4:\"file\";s:114:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:150;s:5:\"trace\";b:1;}}s:32:\"8b940f8cfd06ce2af827f77dc96fed30\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:82:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/managers/widgets.php\";s:7:\"\0*\0line\";i:429;s:7:\"\0*\0date\";s:19:\"2024-02-26 17:12:00\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:46:\"Undefined array key &quot;editor_post_id&quot;\";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:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-26 17:12:00\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:36:\"Undefined array key \"editor_post_id\"\";s:4:\"file\";s:82:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/includes/managers/widgets.php\";s:4:\"line\";i:429;s:5:\"trace\";b:1;}}s:32:\"82952d85ee39aacbcaf61849da819747\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:90:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:7:\"\0*\0line\";i:363;s:7:\"\0*\0date\";s:19:\"2024-02-26 17:15:30\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type null\";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:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-26 17:15:30\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:51:\"Trying to access array offset on value of type null\";s:4:\"file\";s:90:\"/home/esigo.co/httpdocs/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:4:\"line\";i:363;s:5:\"trace\";b:1;}}}','no'),(395,'elementor_unfiltered_files_upload','1','yes'),(428,'wp-optimize-installed-for','1693280640','yes'),(430,'wp-optimize-schedule','false','yes'),(431,'wp-optimize-last-optimized','Never','yes'),(432,'wp-optimize-schedule-type','wpo_weekly','yes'),(433,'wp-optimize-retention-enabled','false','yes'),(434,'wp-optimize-retention-period','2','yes'),(435,'wp-optimize-enable-admin-menu','false','yes'),(436,'wp-optimize-total-cleaned','0','yes'),(437,'wp-optimize-auto','a:8:{s:5:\"trash\";s:4:\"true\";s:5:\"spams\";s:4:\"true\";s:6:\"drafts\";s:4:\"true\";s:8:\"usermeta\";s:5:\"false\";s:9:\"transient\";s:5:\"false\";s:10:\"unapproved\";s:5:\"false\";s:8:\"optimize\";s:5:\"false\";s:9:\"revisions\";s:4:\"true\";}','yes'),(438,'wp-optimize-settings','a:14:{s:15:\"user-trackbacks\";s:4:\"true\";s:10:\"user-trash\";s:4:\"true\";s:10:\"user-spams\";s:4:\"true\";s:11:\"user-drafts\";s:4:\"true\";s:13:\"user-usermeta\";s:4:\"true\";s:14:\"user-transient\";s:4:\"true\";s:13:\"user-postmeta\";s:4:\"true\";s:15:\"user-unapproved\";s:4:\"true\";s:14:\"user-pingbacks\";s:4:\"true\";s:13:\"user-optimize\";s:4:\"true\";s:15:\"user-orphandata\";s:4:\"true\";s:14:\"user-revisions\";s:4:\"true\";s:16:\"user-commentmeta\";s:4:\"true\";s:13:\"last_saved_in\";s:6:\"3.2.18\";}','yes'),(439,'wpo_minify_config','a:52:{s:5:\"debug\";b:0;s:19:\"enabled_css_preload\";b:0;s:18:\"enabled_js_preload\";b:0;s:11:\"hpreconnect\";s:0:\"\";s:8:\"hpreload\";s:0:\"\";s:7:\"loadcss\";b:0;s:10:\"remove_css\";b:0;s:17:\"critical_path_css\";s:0:\"\";s:31:\"critical_path_css_is_front_page\";s:0:\"\";s:30:\"preserve_settings_on_uninstall\";b:1;s:22:\"disable_when_logged_in\";b:0;s:16:\"default_protocol\";s:7:\"dynamic\";s:17:\"html_minification\";b:1;s:16:\"clean_header_one\";b:0;s:13:\"emoji_removal\";b:1;s:18:\"merge_google_fonts\";b:1;s:19:\"enable_display_swap\";b:1;s:18:\"remove_googlefonts\";b:0;s:13:\"gfonts_method\";s:7:\"inherit\";s:15:\"fawesome_method\";s:7:\"inherit\";s:10:\"enable_css\";b:1;s:23:\"enable_css_minification\";b:1;s:21:\"enable_merging_of_css\";b:1;s:23:\"remove_print_mediatypes\";b:0;s:10:\"inline_css\";b:0;s:9:\"enable_js\";b:1;s:22:\"enable_js_minification\";b:1;s:20:\"enable_merging_of_js\";b:1;s:15:\"enable_defer_js\";s:10:\"individual\";s:13:\"defer_js_type\";s:5:\"defer\";s:12:\"defer_jquery\";b:1;s:18:\"enable_js_trycatch\";b:0;s:19:\"exclude_defer_login\";b:1;s:7:\"cdn_url\";s:0:\"\";s:9:\"cdn_force\";b:0;s:9:\"async_css\";s:0:\"\";s:8:\"async_js\";s:0:\"\";s:24:\"disable_css_inline_merge\";b:1;s:6:\"ualist\";a:8:{i:0;s:12:\"x11.*fox\\/54\";i:1;s:20:\"oid\\s4.*xus.*ome\\/62\";i:2;s:12:\"x11.*ome\\/62\";i:3;s:5:\"oobot\";i:4;s:5:\"ighth\";i:5;s:5:\"tmetr\";i:6;s:6:\"eadles\";i:7;s:5:\"ingdo\";}s:32:\"exclude_js_from_page_speed_tools\";b:0;s:33:\"exclude_css_from_page_speed_tools\";b:0;s:9:\"blacklist\";a:0:{}s:11:\"ignore_list\";a:0:{}s:10:\"exclude_js\";s:0:\"\";s:11:\"exclude_css\";s:0:\"\";s:23:\"edit_default_exclutions\";b:0;s:18:\"merge_allowed_urls\";s:0:\"\";s:7:\"enabled\";b:0;s:17:\"last-cache-update\";i:1712888080;s:14:\"plugin_version\";s:5:\"0.0.0\";s:14:\"cache_lifespan\";i:30;s:25:\"merge_inline_extra_css_js\";b:1;}','yes'),(440,'updraft_task_manager_plugins','a:1:{i:0;s:27:\"wp-optimize/wp-optimize.php\";}','yes'),(441,'updraft_task_manager_dbversion','1.1','yes'),(442,'wp-optimize-compression_server','resmushit','yes'),(443,'wp-optimize-image_quality','very_good','yes'),(444,'wp-optimize-back_up_original','1','yes'),(445,'wp-optimize-back_up_delete_after','1','yes'),(446,'wp-optimize-back_up_delete_after_days','50','yes'),(447,'wpo_update_version','3.2.18','yes'),(448,'wp-optimize-webp_conversion_test','1','yes'),(449,'wp-optimize-webp_converters','a:1:{i:0;s:2:\"gd\";}','yes'),(451,'wpo_cache_config','a:21:{s:19:\"enable_page_caching\";b:1;s:23:\"page_cache_length_value\";i:24;s:22:\"page_cache_length_unit\";s:5:\"hours\";s:17:\"page_cache_length\";i:86400;s:32:\"cache_exception_conditional_tags\";a:1:{i:0;s:0:\"\";}s:20:\"cache_exception_urls\";a:1:{i:0;s:0:\"\";}s:23:\"cache_exception_cookies\";a:1:{i:0;s:0:\"\";}s:30:\"cache_exception_browser_agents\";a:1:{i:0;s:0:\"\";}s:22:\"enable_sitemap_preload\";b:0;s:23:\"enable_schedule_preload\";s:1:\"0\";s:21:\"preload_schedule_type\";s:22:\"wpo_use_cache_lifespan\";s:21:\"enable_mobile_caching\";s:1:\"0\";s:19:\"enable_user_caching\";s:1:\"0\";s:8:\"site_url\";s:34:\"https://esigo.futuremediatrix.com/\";s:24:\"enable_cache_per_country\";b:0;s:19:\"permalink_structure\";s:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:7:\"uploads\";s:77:\"/home/fmedia/domains/esigo.futuremediatrix.com/public_html/wp-content/uploads\";s:10:\"gmt_offset\";d:8;s:15:\"use_webp_images\";b:0;s:17:\"wpo_cache_cookies\";a:0:{}s:25:\"wpo_cache_query_variables\";a:0:{}}','yes'),(452,'wp-optimize-redirection_possible','false','yes'),(455,'updraft_lock_wpo_page_cache_preloader_creating_tasks','0','no'),(456,'updraft_lock_wpo_minify_preloader_creating_tasks','0','no'),(459,'wp-optimize-corrupted-tables-count','0','yes'),(462,'wp-optimize-enable-auto-backup','false','yes'),(465,'wp-optimize-wpo_last_page_cache_preload_type','sitemap','yes'),(467,'wp-optimize-completed_task_count','41','yes'),(468,'wp-optimize-total_bytes_saved','0','yes'),(469,'wp-optimize-total_percent_saved','0','yes'),(479,'wp-optimize-wpo_last_page_cache_preload','1693280806','yes'),(535,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"ardy@futuremediatrix.com\";s:7:\"version\";s:5:\"6.5.5\";s:9:\"timestamp\";i:1719271444;}','no'),(1123,'wpcode_usage_tracking_config','a:6:{s:3:\"day\";i:2;s:4:\"hour\";i:7;s:6:\"minute\";i:57;s:6:\"second\";i:18;s:6:\"offset\";i:201438;s:8:\"initsend\";i:1695715038;}','no'),(1124,'ihaf_activated','a:2:{s:6:\"wpcode\";i:1695197071;s:7:\"version\";s:7:\"2.1.3.1\";}','yes'),(1125,'wpcode_snippets','a:1:{s:16:\"site_wide_header\";a:3:{i:0;a:12:{s:2:\"id\";i:8026;s:5:\"title\";s:35:\"Add Class For Menu Managed Services\";s:4:\"code\";s:329:\"<script>\r\n	window.addEventListener(\'DOMContentLoaded\', (event) => {\r\n		var parentElement = document.querySelector(\'.cs_top_nav\');\r\n		if (parentElement) {\r\n			var childElements = parentElement.querySelectorAll(\'li\');\r\n			if (childElements.length > 0) {\r\n				childElements[2].classList.add(\'showpopup\');\r\n			}\r\n		}\r\n	});\r\n</script>\";s:9:\"code_type\";s:4:\"html\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}}i:1;a:12:{s:2:\"id\";i:8025;s:5:\"title\";s:28:\"Toggle Menu Managed Services\";s:4:\"code\";s:907:\"<script>\r\n	window.addEventListener(\'DOMContentLoaded\', function() {\r\n		let elements = document.querySelectorAll(\'.cs_top_nav li.showpopup\');\r\n		let popupposts = [\'8022\'];\r\n		elements.forEach(function(e, i) {\r\n			e.addEventListener(\'mouseenter\', function() {\r\n				elementorProFrontend.modules.popup.showPopup({ id: popupposts[i] });\r\n\r\n				let elementsBackdrop = document.querySelectorAll(\'.container-menu-managed-services\');\r\n				if (elementsBackdrop.length > 0) {\r\n					elementsBackdrop.forEach(function(e, i) {\r\n						e.addEventListener(\'mouseleave\', function() {\r\n							jQuery(\'body\').click();\r\n						});\r\n					});\r\n				}\r\n			});\r\n		});\r\n	});\r\n\r\n	window.addEventListener(\'scroll\', function() {\r\n		if (window.scrollY > 140) {\r\n			var event = new MouseEvent(\'click\', {\r\n				\'view\': window,\r\n				\'bubbles\': true,\r\n				\'cancelable\': true\r\n			});\r\n			document.body.dispatchEvent(event);\r\n		}\r\n	});\r\n</script>\";s:9:\"code_type\";s:4:\"html\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}}i:2;a:12:{s:2:\"id\";i:7592;s:5:\"title\";s:20:\"Auto Replace Snippet\";s:4:\"code\";s:358:\"<script>\r\n	if(window.location.href === \'https://esigo.futuremediatrix.com/category/article/\'){\r\n		window.location.replace(\'https://esigo.futuremediatrix.com/\');\r\n	}\r\n\r\n	if (window.location.href === \'https://esigo.futuremediatrix.com/category/news-and-events/\'){\r\n		window.location.replace(\'https://esigo.futuremediatrix.com/news-and-events/\');\r\n	}\r\n</script>\";s:9:\"code_type\";s:4:\"html\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:1;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}}}}','yes'),(1126,'wpcode_admin_notices','a:1:{s:14:\"review_request\";a:2:{s:4:\"time\";i:1700047112;s:9:\"dismissed\";b:1;}}','yes'),(1130,'wpcode_notifications','a:4:{s:6:\"update\";i:1713806640;s:4:\"feed\";a:1:{i:0;a:8:{s:5:\"title\";s:46:\"🌍 Earth Day Sale! Save Up to $100 on WPCode\";s:7:\"content\";s:213:\"Celebrate Earth Day with special discounts on all WPCode plans! Save $50 on Basic, $60 on Plus, $80 on Pro, and $100 on Elite. Enhance your WordPress functionality today. Don\'t miss out—offer ends on April 24th!\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:58;s:4:\"icon\";s:7:\"success\";s:4:\"btns\";a:1:{s:4:\"main\";a:2:{s:3:\"url\";s:96:\"https://library.wpcode.com/pricing/?utm_source=plugin&utm_medium=notification&utm_campaign=apr24\";s:4:\"text\";s:11:\"Upgrade Now\";}}s:5:\"start\";s:19:\"2024-04-22 04:00:00\";s:3:\"end\";s:19:\"2024-04-24 03:59:00\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:1:{i:0;a:8:{s:5:\"title\";s:66:\"New in WPCode: Elementor widget, 10 new languages support & more! \";s:7:\"content\";s:240:\"WPCode v2.1.10 aims to make website management even more intuitive, collaborative, and mobile-friendly. In this update you’ll have a brand new Elementor widget, snippet editing warnings, enhanced mobile UI, and 10 new languages support!\r\n\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:5:\"elite\";i:2;s:4:\"lite\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:2:\"id\";i:54;s:4:\"icon\";s:7:\"success\";s:4:\"btns\";a:1:{s:4:\"main\";a:2:{s:3:\"url\";s:103:\"https://wpcode.com/introducing-wpcode-2110/?utm_source=plugin&utm_medium=notification&utm_campaign=2110\";s:4:\"text\";s:10:\"Learn More\";}}s:5:\"start\";s:19:\"2024-03-27 04:00:00\";s:3:\"end\";s:19:\"2024-04-03 04:00:00\";}}}','no'),(1203,'secret_key','`oVYUq*B_o,!9!-(vk&vcBxr%<niM!U}1o]$Sl0w?xBv7A<eg2#eSVJrJY]jl3JQ','no'),(1212,'category_children','a:0:{}','yes'),(1613,'wp-optimize-install-or-update-notice-version','1.1','yes'),(1646,'updraftplus-addons_siteid','9633053bd13674a957e73c0186465bed','no'),(1649,'updraftplus_unlocked_fd','1','no'),(1650,'updraftplus_last_lock_time_fd','2024-07-02 09:05:51','no'),(1651,'updraftplus_semaphore_fd','0','no'),(1652,'updraft_last_scheduled_fd','1719911151','yes'),(2042,'auto_update_plugins','a:0:{}','no'),(2043,'updraft_lock_b83c0a9e98a0','1698143057','no'),(2192,'action_scheduler_hybrid_store_demarkation','7745','yes'),(2193,'schema-ActionScheduler_StoreSchema','7.0.1698313580','yes'),(2194,'schema-ActionScheduler_LoggerSchema','3.0.1698313580','yes'),(2195,'wp_mail_smtp_initial_version','3.9.0','no'),(2196,'wp_mail_smtp_version','3.9.0','no'),(2197,'wp_mail_smtp','a:3:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:24:\"ardy@futuremediatrix.com\";s:9:\"from_name\";s:5:\"ESIGO\";s:6:\"mailer\";s:4:\"mail\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:2:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:0;}}','no'),(2198,'wp_mail_smtp_activated_time','1698313580','no'),(2199,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1698313580;}','yes'),(2204,'action_scheduler_lock_async-request-runner','1698313897','yes'),(2208,'wp_mail_smtp_migration_version','5','yes'),(2209,'wp_mail_smtp_debug_events_db_version','1','yes'),(2210,'wp_mail_smtp_activation_prevent_redirect','1','yes'),(2211,'wp_mail_smtp_setup_wizard_stats','a:3:{s:13:\"launched_time\";i:1698313597;s:14:\"completed_time\";i:0;s:14:\"was_successful\";b:0;}','no'),(2215,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1698313614;s:9:\"dismissed\";b:0;}','yes'),(2507,'wp_attachment_pages_enabled','1','yes'),(2508,'db_upgraded','','yes'),(2643,'WPLANG','','yes'),(2644,'new_admin_email','ardy@futuremediatrix.com','yes'),(2848,'duplicate_page_options','a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}','yes'),(7270,'updraft_remotesites','','yes'),(7271,'updraft_migrator_localkeys','','yes'),(7272,'updraft_central_localkeys','','yes'),(7274,'updraft_autobackup_default','0','yes'),(7275,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-17f24c409d080962a77cb3d69e0acc18\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),(7276,'updraft_pcloud','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-a47e804c282cad72edd4849e6b247013\";a:0:{}}}','yes'),(7277,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-d88406736853cbb2051014126fb2cf4f\";a:3:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";}}}','yes'),(7278,'updraftplus_tmp_googledrive_access_token','','yes'),(7279,'updraftplus_dismissedautobackup','','yes'),(7280,'dismissed_general_notices_until','','yes'),(7281,'dismissed_review_notice','','yes'),(7282,'dismissed_clone_php_notices_until','','yes'),(7283,'dismissed_clone_wc_notices_until','','yes'),(7284,'dismissed_season_notices_until','','yes'),(7285,'updraftplus_dismissedexpiry','','yes'),(7286,'updraftplus_dismisseddashnotice','','yes'),(7287,'updraft_interval','daily','yes'),(7288,'updraft_interval_increments','none','yes'),(7291,'updraft_interval_database','daily','yes'),(7292,'updraft_retain','1','yes'),(7293,'updraft_retain_db','1','yes'),(7294,'updraft_encryptionphrase','','yes'),(7295,'updraft_service','','yes'),(7296,'updraft_googledrive_clientid','','yes'),(7297,'updraft_googledrive_secret','','yes'),(7298,'updraft_googledrive_remotepath','','yes'),(7299,'updraft_ftp','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-c4d1ffe819a944920d7b4e0cdc7bd1ce\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";i:1;}}}','yes'),(7300,'updraft_backblaze','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-3b19d928a62daf3e06f6c54f21c70409\";a:0:{}}}','yes'),(7301,'updraft_server_address','','yes'),(7302,'updraft_dir','','yes'),(7303,'updraft_email','','yes'),(7304,'updraft_delete_local','0','yes'),(7305,'updraft_debug_mode','0','yes'),(7306,'updraft_include_plugins','0','yes'),(7307,'updraft_include_themes','0','yes'),(7308,'updraft_include_uploads','0','yes'),(7309,'updraft_include_others','0','yes'),(7310,'updraft_include_wpcore','0','yes'),(7311,'updraft_include_wpcore_exclude','','yes'),(7312,'updraft_include_more','0','yes'),(7313,'updraft_include_blogs','','yes'),(7314,'updraft_include_mu-plugins','','yes'),(7316,'updraft_include_others_exclude','','yes'),(7317,'updraft_include_uploads_exclude','','yes'),(7318,'updraft_lastmessage','The backup succeeded and is now complete (Jul 02 17:05:52)','yes'),(7319,'updraft_googledrive_token','','yes'),(7320,'updraft_dropboxtk_request_token','','yes'),(7321,'updraft_dropboxtk_access_token','','yes'),(7322,'updraft_adminlocking','','yes'),(7323,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-4a893b470c4e4d9bb19eadd15aeeb458\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(7324,'updraft_retain_extrarules','','yes'),(7325,'updraft_googlecloud','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-087c45761465871135dc2eef94464077\";a:0:{}}}','yes'),(7326,'updraft_include_more_path','','yes'),(7327,'updraft_split_every','25','yes'),(7328,'updraft_ssl_nossl','0','yes'),(7329,'updraft_backupdb_nonwp','0','yes'),(7330,'updraft_extradbs','','yes'),(7332,'updraft_last_backup','a:6:{s:26:\"nonincremental_backup_time\";i:1719911151;s:11:\"backup_time\";i:1719911151;s:12:\"backup_array\";a:3:{s:2:\"db\";s:47:\"backup_2024-07-02-1705_ESIGO_3e0b07d7ef46-db.gz\";s:7:\"db-size\";i:1425742;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"cab43fcd565da31b3d3d1f588f0feb520b2cb453\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"59525fa8abb8c25b12f3b1043dd22fee954714216b7a7615eb4ffad8b4bbd6f0\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"3e0b07d7ef46\";}','yes'),(7333,'updraft_starttime_files','20:47','yes'),(7334,'updraft_starttime_db','20:47','yes'),(7335,'updraft_startday_db','0','yes'),(7336,'updraft_startday_files','0','yes'),(7337,'updraft_sftp','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-12cf4e84df9e35999edea2bcb2b78dd6\";a:0:{}}}','yes'),(7338,'updraft_s3','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-bc6f46a1380081f70ba38f34fa305e40\";a:5:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:3:\"rrs\";s:0:\"\";s:22:\"server_side_encryption\";s:0:\"\";}}}','yes'),(7339,'updraft_s3generic','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-406bff6c1a8759d74ad96b3664739562\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}','yes'),(7340,'updraft_dreamhost','','yes'),(7341,'updraft_s3generic_login','','yes'),(7342,'updraft_s3generic_pass','','yes'),(7343,'updraft_s3generic_remote_path','','yes'),(7344,'updraft_s3generic_endpoint','','yes'),(7345,'updraft_webdav','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-e91d38e6c8e42e42075b0ae37932a08e\";a:0:{}}}','yes'),(7346,'updraft_openstack','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-4afe0e137ac964d9b9322a87847c9b21\";a:6:{s:4:\"user\";s:0:\"\";s:7:\"authurl\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:4:\"path\";s:0:\"\";s:6:\"region\";s:0:\"\";}}}','yes'),(7347,'updraft_onedrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-b5d41e8eb3e53b3df887786fc50d4ae2\";a:0:{}}}','yes'),(7348,'updraft_azure','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-8ad11c87debff9e71062cfd4724c8592\";a:0:{}}}','yes'),(7349,'updraft_cloudfiles','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-d440628694b5d222aae89e4b9657acc6\";a:5:{s:4:\"user\";s:0:\"\";s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:6:\"region\";N;}}}','yes'),(7350,'updraft_cloudfiles_user','','yes'),(7351,'updraft_cloudfiles_apikey','','yes'),(7352,'updraft_cloudfiles_path','','yes'),(7353,'updraft_cloudfiles_authurl','','yes'),(7354,'updraft_ssl_useservercerts','0','yes'),(7355,'updraft_ssl_disableverify','0','yes'),(7356,'updraft_s3_login','','yes'),(7357,'updraft_s3_pass','','yes'),(7358,'updraft_s3_remote_path','','yes'),(7359,'updraft_dreamobjects_login','','yes'),(7360,'updraft_dreamobjects_pass','','yes'),(7361,'updraft_dreamobjects_remote_path','','yes'),(7362,'updraft_dreamobjects','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-62ec990393f28a325da7931d9b67e70b\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(7363,'updraft_report_warningsonly','a:0:{}','yes'),(7364,'updraft_report_wholebackup','a:0:{}','yes'),(7365,'updraft_report_dbbackup','a:0:{}','yes'),(7366,'updraft_log_syslog','0','yes'),(7367,'updraft_extradatabases','','yes'),(7368,'updraftplus_tour_cancelled_on','settings_more','yes'),(7369,'updraftplus_version','1.23.10','yes'),(7370,'updraft_dismiss_admin_warning_litespeed','','yes'),(7371,'updraft_dismiss_admin_warning_pclzip','','yes'),(7372,'updraft_dismiss_phpseclib_notice','','yes'),(7373,'updraft_backup_history','a:75:{i:1719911151;a:11:{s:2:\"db\";s:47:\"backup_2024-07-02-1705_ESIGO_3e0b07d7ef46-db.gz\";s:7:\"db-size\";i:1425742;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"cab43fcd565da31b3d3d1f588f0feb520b2cb453\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"59525fa8abb8c25b12f3b1043dd22fee954714216b7a7615eb4ffad8b4bbd6f0\";}}s:5:\"nonce\";s:12:\"3e0b07d7ef46\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1719812658;a:11:{s:2:\"db\";s:47:\"backup_2024-07-01-1344_ESIGO_0bd32dbd3f35-db.gz\";s:7:\"db-size\";i:1425639;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"5a929e4e07ff24719204cfb4f1be493e462e9679\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"2bd23680dca3f844c800418f1fee2af744b8d72632f56325fd0aa355fc8ef439\";}}s:5:\"nonce\";s:12:\"0bd32dbd3f35\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1719734403;a:11:{s:2:\"db\";s:47:\"backup_2024-06-30-1600_ESIGO_1d4287798b6f-db.gz\";s:7:\"db-size\";i:1425529;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"29d9920c3ee5cc1433e776856925fb9ffd790f29\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"c97d2351af5ffed7a8b2ae64b49d372fd1900ef37cb3a05048d2541424beb52c\";}}s:5:\"nonce\";s:12:\"1d4287798b6f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1719650143;a:11:{s:2:\"db\";s:47:\"backup_2024-06-29-1635_ESIGO_9cb342e07633-db.gz\";s:7:\"db-size\";i:1425421;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"29cf03303eb0e9efee807e6951d76abd69ac0583\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f55468cc3fe791c4d71b8b35940b540c6dbada68d4e48670301a77587d8d1168\";}}s:5:\"nonce\";s:12:\"9cb342e07633\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1719560146;a:11:{s:2:\"db\";s:47:\"backup_2024-06-28-1535_ESIGO_8fc14a10381e-db.gz\";s:7:\"db-size\";i:1425320;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"e7fa690208afcf92edfb5f5696753110b79fa10e\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"370a69428086f471a00459c8328a8446ea4aab3f22031a2e2443c11c2ff22e89\";}}s:5:\"nonce\";s:12:\"8fc14a10381e\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1719490038;a:11:{s:2:\"db\";s:47:\"backup_2024-06-27-2007_ESIGO_90d02e59dd2f-db.gz\";s:7:\"db-size\";i:1425206;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"7018fcf920e4c18f04c2ab8e9c7ecbacddf72382\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"0e6b9adb7b385ff12494fe95b477ee7ddd2fe0bb7469c7e1df315e2822cc66b7\";}}s:5:\"nonce\";s:12:\"90d02e59dd2f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1719385091;a:11:{s:2:\"db\";s:47:\"backup_2024-06-26-1458_ESIGO_d25348785e60-db.gz\";s:7:\"db-size\";i:1425057;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"5e29bb49a2c07373134b83bd957252f5286c1a1f\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"ec566e5d9ad3b268b7781dff1c90bc7997eaf9b7f9fe3736fdffcf225e6f5d29\";}}s:5:\"nonce\";s:12:\"d25348785e60\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1719211400;a:11:{s:2:\"db\";s:47:\"backup_2024-06-24-1443_ESIGO_829bb2b44b57-db.gz\";s:7:\"db-size\";i:1424356;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"7c5750545c3a1c31375522d5e117de91b85bc9d0\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"d35ae6baf5f81cbcc8f67da908810991ad77edcd71c14e7c2d7ea6609618d997\";}}s:5:\"nonce\";s:12:\"829bb2b44b57\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1719117831;a:11:{s:2:\"db\";s:47:\"backup_2024-06-23-1243_ESIGO_01a4f3039faa-db.gz\";s:7:\"db-size\";i:1424258;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"249f7b069d6ce89cc28e639cd50aecb210e92227\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"20cada89144dd1ec2f6ce23c1a32078f910ece32227369e565f43ef3dc566104\";}}s:5:\"nonce\";s:12:\"01a4f3039faa\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1719031880;a:11:{s:2:\"db\";s:47:\"backup_2024-06-22-1251_ESIGO_be36747ae679-db.gz\";s:7:\"db-size\";i:1424147;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"1d6378f93a92ff1939c0b910725a4e2866b55ef7\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"dfa0c9e19cee1cce1449e9dd6266ec550fe34c7a275e2e7c506e11b605d95726\";}}s:5:\"nonce\";s:12:\"be36747ae679\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718945016;a:11:{s:2:\"db\";s:47:\"backup_2024-06-21-1243_ESIGO_efe09e5deb2d-db.gz\";s:7:\"db-size\";i:1424034;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"866a80dfa0c2b4897ed879597fb02027b6c7b35e\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"18ea1ed23cfe8e086e6a7f6c1dfe163dd9bda11b1d7394ba4baf06c13cea598b\";}}s:5:\"nonce\";s:12:\"efe09e5deb2d\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718863086;a:11:{s:2:\"db\";s:47:\"backup_2024-06-20-1358_ESIGO_2bc4c391eaf1-db.gz\";s:7:\"db-size\";i:1423936;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"e27007a7abe8c058e2af0d0a3029dd6caee5a80c\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"54ed81ea69b7d061e73ac0163cf47437361b54772f46bb6cae7bf3212b9a0a82\";}}s:5:\"nonce\";s:12:\"2bc4c391eaf1\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718773327;a:11:{s:2:\"db\";s:47:\"backup_2024-06-19-1302_ESIGO_446314ea827b-db.gz\";s:7:\"db-size\";i:1423833;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"1581e4fed2a2ab96d24b0850ec6f047498b9f248\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"5cad39528268ca9942ecf8623a178f09c419eb807fae178429f732a81e9071df\";}}s:5:\"nonce\";s:12:\"446314ea827b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718689226;a:11:{s:2:\"db\";s:47:\"backup_2024-06-18-1340_ESIGO_fb551bad3aeb-db.gz\";s:7:\"db-size\";i:1423734;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"38f0821eeba8dbf78b4948b9fc54b0e5047aba91\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"96439790809d9a0612c45bad5a7e84397a369c6e7881aca9627c0e466aafefa5\";}}s:5:\"nonce\";s:12:\"fb551bad3aeb\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718639552;a:11:{s:2:\"db\";s:47:\"backup_2024-06-17-2352_ESIGO_8e207fc392ed-db.gz\";s:7:\"db-size\";i:1423621;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"03dfda0f1f3c9f16aeef0a50f38a0d50f6baa220\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"76bc630f17750090cfe316009fd9614892f5b4fbccbc5088a9adf4bf6a62fa3e\";}}s:5:\"nonce\";s:12:\"8e207fc392ed\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718518632;a:11:{s:2:\"db\";s:47:\"backup_2024-06-16-1417_ESIGO_4435b58e1e2c-db.gz\";s:7:\"db-size\";i:1423500;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"cd70996ed1658f750e049e9416cc14bc3af8772d\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"e898a9ddde9cfe8571df088735273b5c37e83e658ba67936eb8ad846c5a9c0f0\";}}s:5:\"nonce\";s:12:\"4435b58e1e2c\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718427517;a:11:{s:2:\"db\";s:47:\"backup_2024-06-15-1258_ESIGO_6a635de6e254-db.gz\";s:7:\"db-size\";i:1423396;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"20ea587b0f5f2655df1417f14d8b3a27aa6159af\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"176382f60e6b451863be1e1b2a7f886dd2c68464a4a12f8caddcf29b0fc45b6d\";}}s:5:\"nonce\";s:12:\"6a635de6e254\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718352827;a:11:{s:2:\"db\";s:47:\"backup_2024-06-14-1613_ESIGO_b6bff0899c34-db.gz\";s:7:\"db-size\";i:1423286;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"8f52639ca7b2ce24d91ffe5af2eb52187ffc0b95\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"d7659adbfd2c1cf6b7ef32bd74c9eb8579f00b81ba7894968331adba38c90d49\";}}s:5:\"nonce\";s:12:\"b6bff0899c34\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718290714;a:11:{s:2:\"db\";s:47:\"backup_2024-06-13-2258_ESIGO_58f113cd5737-db.gz\";s:7:\"db-size\";i:1423097;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"4d82060ebd56f2f0cb5602dc7ecb870820506fd3\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"ed364073417bda80af9973b6da60d5e2698ff32755f01dc2e4920e5892d67d2b\";}}s:5:\"nonce\";s:12:\"58f113cd5737\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718167798;a:11:{s:2:\"db\";s:47:\"backup_2024-06-12-1249_ESIGO_46c45a145a32-db.gz\";s:7:\"db-size\";i:1422950;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"dd2cf7040d819fce922a0b6ad70ef75adaab725d\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"7e7596764395a184427af20fad45d7dc0d76faf1fddd78074c9baed80e6a997c\";}}s:5:\"nonce\";s:12:\"46c45a145a32\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1718081105;a:11:{s:2:\"db\";s:47:\"backup_2024-06-11-1245_ESIGO_14cd7223fb1d-db.gz\";s:7:\"db-size\";i:1422841;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"ad59a2231badae64e84e088d353f7c00ee3e23cf\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"e0afe2efc67dbf8ba7927c2a6614da4b2886b58df91a73f9d445f830f46d5037\";}}s:5:\"nonce\";s:12:\"14cd7223fb1d\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717995544;a:11:{s:2:\"db\";s:47:\"backup_2024-06-10-1259_ESIGO_a93d3640dc0e-db.gz\";s:7:\"db-size\";i:1422642;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"3f4b8ed66386a8e3c5a1103d41bc4da86c89bb25\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"80d8929b9dc0656745ccac33b2289528c00b440438a9f49d22c67622d213ff02\";}}s:5:\"nonce\";s:12:\"a93d3640dc0e\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717941522;a:11:{s:2:\"db\";s:47:\"backup_2024-06-09-2158_ESIGO_6f3109e6949c-db.gz\";s:7:\"db-size\";i:1422642;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"c1cf7040ab9425963e118009fbde80aed3932979\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"0fc2d9a5702472302503bdf92d9c29c7e083d5273018713281e807545296b798\";}}s:5:\"nonce\";s:12:\"6f3109e6949c\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717833715;a:11:{s:2:\"db\";s:47:\"backup_2024-06-08-1601_ESIGO_be84dabfb4ee-db.gz\";s:7:\"db-size\";i:1422484;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"3981e4bfe4692aaa93f80bdf146da6f135c4bd68\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"7f1c5ef1b7640cf8e9ca3dde0e2b28db2b4cc0e61d286fe3c8388877dbf38182\";}}s:5:\"nonce\";s:12:\"be84dabfb4ee\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717788469;a:11:{s:2:\"db\";s:47:\"backup_2024-06-08-0327_ESIGO_db438e09603d-db.gz\";s:7:\"db-size\";i:1422361;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"5680a30494b8ab411c10ee18a778c646b46986dc\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"c1945bbbf0fb45ce09f7a1f7bf790c9c6b42317a8a95669b2a411e8e79737ccc\";}}s:5:\"nonce\";s:12:\"db438e09603d\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717649616;a:11:{s:2:\"db\";s:47:\"backup_2024-06-06-1253_ESIGO_a43e1a9c093c-db.gz\";s:7:\"db-size\";i:1422363;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"d894c4f5f5a6a30a804b30591578c375f0cfe8da\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"b747906e36e47f747e62d1c7ed027a9960a14b936ffd21905df18b6602a41ea7\";}}s:5:\"nonce\";s:12:\"a43e1a9c093c\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717564137;a:11:{s:2:\"db\";s:47:\"backup_2024-06-05-1308_ESIGO_2f790538d104-db.gz\";s:7:\"db-size\";i:1422333;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"469c2d7be3022974b40a79052b79b5757deacfd9\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"fda4204ce27800b1ea962e4cf4d3ccffa81adc103144c57c6251e3426e2d0eb0\";}}s:5:\"nonce\";s:12:\"2f790538d104\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717476702;a:11:{s:2:\"db\";s:47:\"backup_2024-06-04-1251_ESIGO_0103d5667dc6-db.gz\";s:7:\"db-size\";i:1422316;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"f8048afced5b741dd24ebc3b99e76ac701b3c004\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"6b041b8a9e6711b1d29129af1f30b28425365f24c561e208fbbcc4278bb1a1c5\";}}s:5:\"nonce\";s:12:\"0103d5667dc6\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717392457;a:11:{s:2:\"db\";s:47:\"backup_2024-06-03-1327_ESIGO_4feed1f85d81-db.gz\";s:7:\"db-size\";i:1422192;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"b0c0f95b216f859c4b5c2b19207210306fb28ba8\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"ca467dff0684b6b00dd7b02e2f2088872f3c51995884dc9a6fa564e50575714f\";}}s:5:\"nonce\";s:12:\"4feed1f85d81\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717315762;a:11:{s:2:\"db\";s:47:\"backup_2024-06-02-1609_ESIGO_eb8a90d2662a-db.gz\";s:7:\"db-size\";i:1422058;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"9d55158e98c98eb4bfed0c63e6f399ba1767f984\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"a74514c31168a9f1a8c20650c4d6909765ab7a98615fc67968dce4c4bb05eda3\";}}s:5:\"nonce\";s:12:\"eb8a90d2662a\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717300892;a:11:{s:2:\"db\";s:47:\"backup_2024-06-02-1201_ESIGO_79281316a5ab-db.gz\";s:7:\"db-size\";i:1421801;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"f8b06de5e25736350f4fda5c424df47a417358de\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"dc3a2801066341b87b50b761d7136735bac20dbf015724031d4eaa139486e151\";}}s:5:\"nonce\";s:12:\"79281316a5ab\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717162492;a:11:{s:2:\"db\";s:47:\"backup_2024-05-31-2134_ESIGO_7d0dbe924052-db.gz\";s:7:\"db-size\";i:1421690;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"4b6dd0bd2b269da4c84ff86fbcb0a1af3b3ab9dd\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"58417defd74da5cb21e5a3631c43c3268a52dc60b40c089afb4af3bb7ea36cad\";}}s:5:\"nonce\";s:12:\"7d0dbe924052\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1717000088;a:11:{s:2:\"db\";s:47:\"backup_2024-05-30-0028_ESIGO_65e8dc0852f9-db.gz\";s:7:\"db-size\";i:1421553;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"f081c0c9238ab4a1dc453666c04e5786a679a590\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"71ca919efb95f34a45f8a43bd399675396777933de00dfe3422095ade7465f74\";}}s:5:\"nonce\";s:12:\"65e8dc0852f9\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1716637447;a:11:{s:2:\"db\";s:47:\"backup_2024-05-25-1944_ESIGO_09ea87ed6a5e-db.gz\";s:7:\"db-size\";i:1421457;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"0ecdc5fbb211f710d0ab18f2b2feb16443d335dc\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"aecb7a61171f1f2e1fc8f1e7d7fb4d841feb751b7e9235b0c83bb898fc1d1c5a\";}}s:5:\"nonce\";s:12:\"09ea87ed6a5e\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1716574870;a:11:{s:2:\"db\";s:47:\"backup_2024-05-25-0221_ESIGO_8b63e213b3a1-db.gz\";s:7:\"db-size\";i:1421332;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"4fae14e795a07055968a1f82f03de3ef2edf9b0b\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3874d8db507e74f183b0daf85853d896182490884947a48e8bd04bca02d4e641\";}}s:5:\"nonce\";s:12:\"8b63e213b3a1\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1716439774;a:11:{s:2:\"db\";s:47:\"backup_2024-05-23-1249_ESIGO_2aeff70dffa2-db.gz\";s:7:\"db-size\";i:1421212;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"4076158b4259fca0f263b8eeec567db02c15c5dd\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"43fb9e25ba4aede68384c61348c4a00b690fab8a77af6bd69b0aeca55543cb32\";}}s:5:\"nonce\";s:12:\"2aeff70dffa2\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1716390655;a:11:{s:2:\"db\";s:47:\"backup_2024-05-22-2310_ESIGO_d0acc3dfafb8-db.gz\";s:7:\"db-size\";i:1420872;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"6a82da21dacb76303e0dabbc1d110b5f957359d5\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f073a2005fffac49a2fe84c71bfb4bed0999fd56d014e53e695607906cc0e289\";}}s:5:\"nonce\";s:12:\"d0acc3dfafb8\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1716237184;a:11:{s:2:\"db\";s:47:\"backup_2024-05-21-0433_ESIGO_6dc59a36b27a-db.gz\";s:7:\"db-size\";i:1420838;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"0b0c16bfc87681d54f20366f29bec63859372cf8\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"d41410e1581c3311f19ca8fdc196677da02920c19960b877b96af63cdc507cab\";}}s:5:\"nonce\";s:12:\"6dc59a36b27a\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1716094189;a:11:{s:2:\"db\";s:47:\"backup_2024-05-19-1249_ESIGO_53dfcbc4a00e-db.gz\";s:7:\"db-size\";i:1420654;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"1f6155e88ea983aadb9959498c8f62f294122754\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"b3022b419aa3e5ffd6ca93fa6d1e2b20cae1c10fbe1a276e0fe8568b61bd91d2\";}}s:5:\"nonce\";s:12:\"53dfcbc4a00e\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1716008027;a:11:{s:2:\"db\";s:47:\"backup_2024-05-18-1253_ESIGO_568d551411eb-db.gz\";s:7:\"db-size\";i:1420659;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"8dff4eada37b79c1d6b4d68559b4464220569a41\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"833a8593a21c472f55be76873aa9b308414184b813133b4b4eec6504a96a8dad\";}}s:5:\"nonce\";s:12:\"568d551411eb\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1715979559;a:11:{s:2:\"db\";s:47:\"backup_2024-05-18-0459_ESIGO_48c5ddfd4fa9-db.gz\";s:7:\"db-size\";i:1420619;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"b0f24bb85947b0702c7bb0457b82203fe34b9097\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"220bd86b13e9539738e39d40f87e56955d372dcb51fc8528d75d32500215adfd\";}}s:5:\"nonce\";s:12:\"48c5ddfd4fa9\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1715435328;a:11:{s:2:\"db\";s:47:\"backup_2024-05-11-2148_ESIGO_55afe5366224-db.gz\";s:7:\"db-size\";i:1420159;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"21c47cbdbda130fca3f39c2189369805d3ed61ee\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"2dae381752ea02fa67e187e3140521bff3c32a720a058a04002fa8f351a85a59\";}}s:5:\"nonce\";s:12:\"55afe5366224\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1715057638;a:11:{s:2:\"db\";s:47:\"backup_2024-05-07-1253_ESIGO_0ad08391e4d4-db.gz\";s:7:\"db-size\";i:1420321;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"3e55d154053ce23f3e2bcf5a7c047ee2e4017fcd\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"77533bcc01ef4510ecae123c46d2ea3f9e634d0a9eb749fd996f4cd16778b456\";}}s:5:\"nonce\";s:12:\"0ad08391e4d4\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714970590;a:11:{s:2:\"db\";s:47:\"backup_2024-05-06-1243_ESIGO_1fdae536ef82-db.gz\";s:7:\"db-size\";i:1420292;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"8e27ff71e62951153feb4c0365561c042285cb90\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"6a5e78c22032ca675c8fb0994bd971ebc57de1e5181a03515110b1420afd6e58\";}}s:5:\"nonce\";s:12:\"1fdae536ef82\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714885308;a:11:{s:2:\"db\";s:47:\"backup_2024-05-05-1301_ESIGO_15e12afc8808-db.gz\";s:7:\"db-size\";i:1420182;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"79e0ba79e1c69eade386509cfb57618bd464996d\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3f247612ce28cf96b87016a3673e6689506a348e0778f704af0a13cdc9262437\";}}s:5:\"nonce\";s:12:\"15e12afc8808\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714801246;a:11:{s:2:\"db\";s:47:\"backup_2024-05-04-1340_ESIGO_9ad18e9ccfb3-db.gz\";s:7:\"db-size\";i:1420270;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"324e726b0c5bb929a29b675718537aa4e01b5ba5\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3450c1293f7a0bd940cfd7e0a55f582c080f424f3af57d443315a21622100768\";}}s:5:\"nonce\";s:12:\"9ad18e9ccfb3\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714787508;a:11:{s:2:\"db\";s:47:\"backup_2024-05-04-0951_ESIGO_a05aa20d8ac1-db.gz\";s:7:\"db-size\";i:1420142;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"1e069af19caef784c7404e7b352f6b3173b75e24\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"67e96b2ee183ccd9c7cb787c0b345c6fe653abceb0889d6f57d041f003432db4\";}}s:5:\"nonce\";s:12:\"a05aa20d8ac1\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714635373;a:11:{s:2:\"db\";s:47:\"backup_2024-05-02-1536_ESIGO_28a26e26d0b0-db.gz\";s:7:\"db-size\";i:1420400;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"584836895ebdcb1a5bd1a88cc60f12469eee9f09\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"1219e8d40c48ea98716ebb2eb4e957e6cfb3f9ea66772a878479ca9a48c3e1fa\";}}s:5:\"nonce\";s:12:\"28a26e26d0b0\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714538661;a:11:{s:2:\"db\";s:47:\"backup_2024-05-01-1244_ESIGO_2643b09ee4a2-db.gz\";s:7:\"db-size\";i:1420066;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"96ffa4cba52ef24fe3e9182db1106d861c56bc51\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"ac1bda0aa05b823971f8be55d0dd72dbe12847cbfb2f418f0fbcb00b87eb3841\";}}s:5:\"nonce\";s:12:\"2643b09ee4a2\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714455171;a:11:{s:2:\"db\";s:47:\"backup_2024-04-30-1332_ESIGO_70b69a093331-db.gz\";s:7:\"db-size\";i:1420046;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"bd4b19d04ffa7f1ee6b4191a239f6961c37d4f00\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3fa90a16e76596c9d7512679e7edc53becea05993a80e25ae73beedd1f4bcf8f\";}}s:5:\"nonce\";s:12:\"70b69a093331\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714410389;a:11:{s:2:\"db\";s:47:\"backup_2024-04-30-0106_ESIGO_51f1239f039f-db.gz\";s:7:\"db-size\";i:1420201;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"8fbdc3dee3676d2434e8f5a42a020cf2c82a2006\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"22ac279600a9a53dbcdb462c805456b18bf6136141b1b7e9ffaeaaf335d51e31\";}}s:5:\"nonce\";s:12:\"51f1239f039f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714325724;a:11:{s:2:\"db\";s:47:\"backup_2024-04-29-0135_ESIGO_93e3178d867b-db.gz\";s:7:\"db-size\";i:1420077;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"6dcca9fc57f1aeb106c056b903f2cb4e20a8a46a\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"a6f0fce74b15f9df1bd64405acb734017932a88d108dd157ac60cb5eaaa9906b\";}}s:5:\"nonce\";s:12:\"93e3178d867b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714256200;a:11:{s:2:\"db\";s:47:\"backup_2024-04-28-0616_ESIGO_17a49b405560-db.gz\";s:7:\"db-size\";i:1419971;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"9b9e05abaecc035c8677cb08eb54508f20daeb09\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"e6a10a82ee94660581fb4fced75a1410ec28020cc4d96d7b81767fab19f9d61a\";}}s:5:\"nonce\";s:12:\"17a49b405560\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1714181142;a:11:{s:2:\"db\";s:47:\"backup_2024-04-27-0925_ESIGO_e198db2ce273-db.gz\";s:7:\"db-size\";i:1419965;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"d5ec43b3cda434e7267cb9e4ce34b8d65c89b9c5\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"ea39ef9b2e2318008b9db779f80fdd9f3abb22425bc78acf8788da0134330c90\";}}s:5:\"nonce\";s:12:\"e198db2ce273\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713937769;a:11:{s:2:\"db\";s:47:\"backup_2024-04-24-1349_ESIGO_7b0a7f3b51a9-db.gz\";s:7:\"db-size\";i:1419879;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"bf97aaeac6a3806c92656068e785ede1c5b7a6f1\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"93afea75673848c4e3af6a33d58acbae2cead9a594da0e2e9d55acd0d8a91bef\";}}s:5:\"nonce\";s:12:\"7b0a7f3b51a9\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713884927;a:11:{s:2:\"db\";s:47:\"backup_2024-04-23-2308_ESIGO_8003f59a2371-db.gz\";s:7:\"db-size\";i:1419744;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"ddffbaa750ed9ca5bc544f076150ddcd82593fa5\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"08a5fed884c57adc0458c2c674edac37dea4ad7131a1fc109a257a9889d467c1\";}}s:5:\"nonce\";s:12:\"8003f59a2371\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713806604;a:11:{s:2:\"db\";s:47:\"backup_2024-04-23-0123_ESIGO_0a9d8815c41b-db.gz\";s:7:\"db-size\";i:1419086;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"20e453948f5c3bccdf7f2f92cbcf8b254c443dd0\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"558f9072cab6442e41f2e4745e42ec85049c9874752207df9838e1088febbc94\";}}s:5:\"nonce\";s:12:\"0a9d8815c41b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713589898;a:11:{s:2:\"db\";s:47:\"backup_2024-04-20-1311_ESIGO_a7825725bb01-db.gz\";s:7:\"db-size\";i:1418985;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"18df3d913ec7e1f83ac194c2fc30636e34886b8a\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"0d379b9f029f8292a51a01204011e4a7dc945851e7bba7781bba80a33e3dbcde\";}}s:5:\"nonce\";s:12:\"a7825725bb01\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713331518;a:11:{s:2:\"db\";s:47:\"backup_2024-04-17-1325_ESIGO_75dc81ac4f4b-db.gz\";s:7:\"db-size\";i:1418974;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"6a7fbaf30aee02ef0bde9089ccc5efa85c7bcf82\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"cf7d46803bfb016f6a9244db4dd1f87796e622ddad8631eb9da499367831948d\";}}s:5:\"nonce\";s:12:\"75dc81ac4f4b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713324818;a:11:{s:2:\"db\";s:47:\"backup_2024-04-17-1133_ESIGO_b5fe87f75c9a-db.gz\";s:7:\"db-size\";i:1419026;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"e3c18564861d0cb91477185ef090a50a960aae2f\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"a6ff2d92276e5fed67ba71364030ca104b7d9610a6b8828c5cfeef46bdb79f9d\";}}s:5:\"nonce\";s:12:\"b5fe87f75c9a\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713233560;a:27:{s:7:\"plugins\";a:2:{i:0;s:53:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-plugins.zip\";i:1;s:54:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-plugins2.zip\";}s:12:\"plugins-size\";i:7598178;s:13:\"plugins1-size\";i:19826936;s:6:\"themes\";a:1:{i:0;s:52:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-themes.zip\";}s:11:\"themes-size\";i:17519679;s:7:\"uploads\";a:8:{i:0;s:53:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-uploads.zip\";i:1;s:54:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-uploads2.zip\";i:2;s:54:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-uploads3.zip\";i:3;s:54:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-uploads4.zip\";i:4;s:54:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-uploads5.zip\";i:5;s:54:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-uploads6.zip\";i:6;s:54:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-uploads7.zip\";i:7;s:54:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-uploads8.zip\";}s:12:\"uploads-size\";i:26291240;s:13:\"uploads1-size\";i:26917861;s:13:\"uploads2-size\";i:26640137;s:13:\"uploads3-size\";i:26254683;s:13:\"uploads4-size\";i:31447333;s:13:\"uploads5-size\";i:30887102;s:13:\"uploads6-size\";i:32641583;s:13:\"uploads7-size\";i:6060460;s:6:\"others\";a:1:{i:0;s:52:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-others.zip\";}s:11:\"others-size\";i:2903111;s:2:\"db\";s:47:\"backup_2024-04-16-1012_ESIGO_492df49a1fa7-db.gz\";s:7:\"db-size\";i:1694276;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:13:{s:8:\"plugins0\";s:40:\"cfee78fe084fbb93918b435471d2a3dc83be5431\";s:8:\"plugins1\";s:40:\"9dbfe21681df306a36e9a4762c23abeeecd3b648\";s:7:\"themes0\";s:40:\"1b2d34aaee350fd2b5481937a6bdf5e030da5354\";s:8:\"uploads0\";s:40:\"f8ad5adbabd09ed0124f31916444a4f2429bdf4d\";s:8:\"uploads1\";s:40:\"4f46e96d6f38e0595e74d97dc3313d6ff3b484ab\";s:8:\"uploads2\";s:40:\"9004c47a4e608ca0f65cb8a113f8567e7fb78153\";s:8:\"uploads3\";s:40:\"86876f539ae4ebad77055725024aaadcbb5a0ae8\";s:8:\"uploads4\";s:40:\"2950bc250bfdbdf827b93fed7e02cff06d2a2d4f\";s:8:\"uploads5\";s:40:\"312c9fd6c3070f81f8144aedff296948a42861c7\";s:8:\"uploads6\";s:40:\"f4b29db5062b25cef57874fda5309062bd18b850\";s:8:\"uploads7\";s:40:\"7273c706671de2ae85d9509a0f83128a74e87fcf\";s:7:\"others0\";s:40:\"6770b4a8991d5bcebffbf32c706cd3c9cede485d\";s:3:\"db0\";s:40:\"047fded60aacffd538c824bac322a4e02b756a21\";}s:6:\"sha256\";a:13:{s:8:\"plugins0\";s:64:\"7ec542407653d8a3fd9d195e89cbc8490435e21bdbd01cc645afdc775de6e6d1\";s:8:\"plugins1\";s:64:\"9b34a9a151887745d7f86ec5b32cd01715aaf370f287491b422d006dbfb74d65\";s:7:\"themes0\";s:64:\"678b382fedfb0f215f1dec4c51c6820eebb9316013fcc99e00eb98d17a461e55\";s:8:\"uploads0\";s:64:\"e4c4506d372d52a2d45c4bd565c7fcd5b00ef494c6ce2f8b72ac73b237fef976\";s:8:\"uploads1\";s:64:\"f330530d69fbac1082f9c58151fd7f9e82e3f56afd6c3db368476562dfda8a6e\";s:8:\"uploads2\";s:64:\"ef670b392e98ed64875a0236baf562e112197c1d5a0dccf3c8a7cf93e3a9d687\";s:8:\"uploads3\";s:64:\"551ecf1ff8d149d41a794be2cb82fd7c3e45eec98219cd0a8737c34adece97db\";s:8:\"uploads4\";s:64:\"b8ae9c056c0329530e73f5112b5123b9afd648b0873529330b68b93254a2cc71\";s:8:\"uploads5\";s:64:\"4001d4e493f9c7930c8601da5dc23d28fa75056f5873b6d3ac503a900f6bce2c\";s:8:\"uploads6\";s:64:\"2dfbc32cfa3f3da390ddb2c10901fca81376d3a93d78f2ec6165d9847f2c4751\";s:8:\"uploads7\";s:64:\"57571ca22dd06caf22d71ad142d10564ed2247ea181fc846d038798c6fd1a599\";s:7:\"others0\";s:64:\"25fd837accc3d93a801d5618f3ab9535fa687ec9d9cb26df969e8156bf24602b\";s:3:\"db0\";s:64:\"00c55af6e9a59cea4fe3457d81672e72ff4525200c577d6cef30904a42003b0d\";}}s:5:\"nonce\";s:12:\"492df49a1fa7\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1713233560;s:6:\"themes\";i:1713233573;s:7:\"uploads\";i:1713233575;s:6:\"others\";i:1713233579;}s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713232318;a:11:{s:2:\"db\";s:47:\"backup_2024-04-16-0951_ESIGO_351465345fc4-db.gz\";s:7:\"db-size\";i:1417486;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"fbc96b1e4b5d9dc75661da628d4adc457af77723\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"d50b798b066d130ffdeca7badc5c0510134d6040fbbc44ffe3806eb52fbcc1c3\";}}s:5:\"nonce\";s:12:\"351465345fc4\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713114325;a:11:{s:2:\"db\";s:47:\"backup_2024-04-15-0105_ESIGO_d02f10693714-db.gz\";s:7:\"db-size\";i:1417351;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"63962388d60965baae304f0f88089f715a0a0bdb\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"b90b11f6dec8349bb3604c5a730e9fe8ddd5efe25e5127049d48dbe7523f97a5\";}}s:5:\"nonce\";s:12:\"d02f10693714\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1713004172;a:11:{s:2:\"db\";s:47:\"backup_2024-04-13-1829_ESIGO_365d13b515f4-db.gz\";s:7:\"db-size\";i:1417264;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"661db56703fd2134aab91bcb1786bd99f1892029\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"a17541190274276639d6cc457225680f5657a44c3e5acfa9c896bfe0a9d1c152\";}}s:5:\"nonce\";s:12:\"365d13b515f4\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712902427;a:11:{s:2:\"db\";s:47:\"backup_2024-04-12-1413_ESIGO_71255fd55fe4-db.gz\";s:7:\"db-size\";i:1649771;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"71db5fc031f15c4cb14a142c9b3cf09c5ec4ff28\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"c425d25f57e2f449d5cf2fd15d0838de244f3701bd2eb322e444bc924e212340\";}}s:5:\"nonce\";s:12:\"71255fd55fe4\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712812537;a:11:{s:2:\"db\";s:47:\"backup_2024-04-11-1315_ESIGO_5536bfde4942-db.gz\";s:7:\"db-size\";i:1410052;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"835e87618a2eab3b0ed4fdefbd552feabdf540e1\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"d324a7bf3f7359c8393755d713f923f3cdc27034daa2190f3e0617c6b750edf1\";}}s:5:\"nonce\";s:12:\"5536bfde4942\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712724997;a:11:{s:2:\"db\";s:47:\"backup_2024-04-10-1256_ESIGO_d7d05886387b-db.gz\";s:7:\"db-size\";i:1409659;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"fca3d600ea30e7cc2d7024896440dc277837c49c\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"aa1eae272e5cf3f423efb346a54e14f5942e09867e8d63ed577da2c4eee75dbd\";}}s:5:\"nonce\";s:12:\"d7d05886387b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712641378;a:11:{s:2:\"db\";s:47:\"backup_2024-04-09-1342_ESIGO_c35fc8230547-db.gz\";s:7:\"db-size\";i:1392932;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"043e8134b3247e34a2266b334ff5204ad9dd6cfa\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3768f41618bf6aa8cab2c8131bb4968696ada809c66246b67da76a79c4709701\";}}s:5:\"nonce\";s:12:\"c35fc8230547\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712551826;a:11:{s:2:\"db\";s:47:\"backup_2024-04-08-1250_ESIGO_8d73445804e6-db.gz\";s:7:\"db-size\";i:1392814;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"8ba110f952907a378ca8d578bba98d5d391179d7\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"b5cb9c9cbba9bfd70045b3ec98bac0ae78e5da9918bbe103d18aaec0137a2ec5\";}}s:5:\"nonce\";s:12:\"8d73445804e6\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712518054;a:11:{s:2:\"db\";s:47:\"backup_2024-04-08-0327_ESIGO_c1f74bf4d3ca-db.gz\";s:7:\"db-size\";i:1392704;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"66dc4f020828050a4844d4173893483baf484bb3\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"abf2a3ae3e28ea7728979f78070b80a7ae0b0f6b305e73ec311faf64a7227a19\";}}s:5:\"nonce\";s:12:\"c1f74bf4d3ca\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712395312;a:11:{s:2:\"db\";s:47:\"backup_2024-04-06-1721_ESIGO_c66afb6286ae-db.gz\";s:7:\"db-size\";i:1392575;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"4fcdff4d6fe11e0165a3d2074b8d6d836f2a6992\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"8c8aa95f3fb6ae8ae9c93786f7087070f45accfee3fcc794af80f1489dcd5769\";}}s:5:\"nonce\";s:12:\"c66afb6286ae\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712304108;a:11:{s:2:\"db\";s:47:\"backup_2024-04-05-1601_ESIGO_797a5db22882-db.gz\";s:7:\"db-size\";i:1392467;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"1e16677fa86e737808076c2a16e872ef185db672\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"dedd09b7e20a068e51a949ca8ac30e16b9ae67a9e2fab813223f77e0ae8c3d51\";}}s:5:\"nonce\";s:12:\"797a5db22882\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712270497;a:11:{s:2:\"db\";s:47:\"backup_2024-04-05-0641_ESIGO_47594df1ad96-db.gz\";s:7:\"db-size\";i:1392337;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"63994317b9347a900bac32566bafac37b5bdeb54\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"ea2658fe3119ea541591d78eee7f49f1b0673ccd73a998acf36cfc8eb8aee09f\";}}s:5:\"nonce\";s:12:\"47594df1ad96\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712120292;a:11:{s:2:\"db\";s:47:\"backup_2024-04-03-1258_ESIGO_821b38cb48c2-db.gz\";s:7:\"db-size\";i:1533458;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"b549861c12712959ae882b5d6ef49550a805738b\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f53423c024b32730562998fa026b3e4a67b7b8bca384064c72ba00fdf67cf3db\";}}s:5:\"nonce\";s:12:\"821b38cb48c2\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1712085960;a:20:{s:18:\"created_by_version\";s:7:\"1.23.10\";s:2:\"db\";s:47:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-db.gz\";s:7:\"db-size\";i:1801994;s:5:\"nonce\";s:12:\"1153f8393bf5\";s:6:\"others\";a:1:{i:0;s:52:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-others.zip\";}s:11:\"others-size\";i:3432937;s:7:\"plugins\";a:2:{i:0;s:53:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-plugins.zip\";i:1;s:54:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-plugins2.zip\";}s:12:\"plugins-size\";i:5348717;s:13:\"plugins1-size\";i:22076397;s:6:\"themes\";a:1:{i:0;s:52:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-themes.zip\";}s:11:\"themes-size\";i:17519679;s:7:\"uploads\";a:8:{i:0;s:53:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-uploads.zip\";i:1;s:54:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-uploads2.zip\";i:2;s:54:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-uploads3.zip\";i:3;s:54:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-uploads4.zip\";i:4;s:54:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-uploads5.zip\";i:5;s:54:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-uploads6.zip\";i:6;s:54:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-uploads7.zip\";i:7;s:54:\"backup_2024-04-03-0326_ESIGO_1153f8393bf5-uploads8.zip\";}s:12:\"uploads-size\";i:26313937;s:13:\"uploads1-size\";i:23388712;s:13:\"uploads2-size\";i:33423702;s:13:\"uploads3-size\";i:28131609;s:13:\"uploads4-size\";i:27660608;s:13:\"uploads5-size\";i:26277494;s:13:\"uploads6-size\";i:26887394;s:13:\"uploads7-size\";i:15950680;}}','no'),(7378,'updraft_lock_1153f8393bf5','1712090585','no'),(7384,'can_compress_scripts','1','yes'),(7385,'site_logo','6649','yes'),(7386,'bcn_version','7.2.0','no'),(7436,'_elementor_settings_update_time','1712095479','yes'),(7437,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(7438,'elementor_disable_color_schemes','','yes'),(7439,'elementor_disable_typography_schemes','','yes'),(7440,'elementor_google_maps_api_key','','yes'),(7441,'elementor_pro_recaptcha_site_key','','yes'),(7442,'elementor_pro_recaptcha_secret_key','','yes'),(7443,'elementor_pro_recaptcha_v3_site_key','','yes'),(7444,'elementor_pro_recaptcha_v3_secret_key','','yes'),(7445,'elementor_pro_recaptcha_v3_threshold','0.5','yes'),(7446,'elementor_pro_facebook_app_id','','yes'),(7447,'elementor_pro_mailchimp_api_key','','yes'),(7448,'elementor_validate_api_data','','yes'),(7449,'elementor_pro_drip_api_token','','yes'),(7450,'elementor_pro_activecampaign_api_key','','yes'),(7451,'elementor_pro_activecampaign_api_url','','yes'),(7452,'elementor_pro_getresponse_api_key','','yes'),(7453,'elementor_pro_convertkit_api_key','','yes'),(7454,'elementor_pro_mailerlite_api_key','','yes'),(7455,'elementor_typekit-kit-id','','yes'),(7456,'elementor_font_awesome_pro_kit_id','','yes'),(7457,'elementor_pro_stripe_test_secret_key','','yes'),(7458,'elementor_validate_stripe_api_test_secret_key_button','','yes'),(7459,'elementor_pro_stripe_live_secret_key','','yes'),(7460,'elementor_validate_stripe_api_live_secret_key_button','','yes'),(7461,'elementor_stripe_legal_disclaimer','','yes'),(7462,'elementor_css_print_method','external','yes'),(7463,'elementor_editor_break_lines','','yes'),(7464,'elementor_google_font','1','yes'),(7465,'elementor_load_fa4_shim','','yes'),(7466,'elementor_meta_generator_tag','','yes'),(7467,'elementor_experiment-e_font_icon_svg','active','yes'),(7468,'elementor_experiment-container','active','yes'),(7469,'elementor_experiment-container_grid','active','yes'),(7470,'elementor_experiment-editor_v2','active','yes'),(7471,'elementor_experiment-landing-pages','active','yes'),(7472,'elementor_experiment-nested-elements','active','yes'),(7473,'elementor_experiment-e_lazyload','active','yes'),(7474,'elementor_experiment-e_global_styleguide','active','yes'),(7475,'elementor_experiment-mega-menu','active','yes'),(7476,'elementor_experiment-taxonomy-filter','active','yes'),(7477,'elementor_experiment-e_dom_optimization','active','yes'),(7478,'elementor_experiment-e_optimized_assets_loading','active','yes'),(7479,'elementor_experiment-e_optimized_css_loading','active','yes'),(7480,'elementor_experiment-additional_custom_breakpoints','active','yes'),(7481,'elementor_experiment-e_swiper_latest','active','yes'),(7482,'elementor_experiment-theme_builder_v2','active','yes'),(7483,'elementor_experiment-page-transitions','active','yes'),(7484,'elementor_experiment-notes','active','yes'),(7485,'elementor_experiment-loop','active','yes'),(7486,'elementor_experiment-form-submissions','active','yes'),(7487,'elementor_experiment-e_scroll_snap','active','yes'),(7490,'_elementor_assets_data','a:2:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:6:{s:14:\"eicon-menu-bar\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"path\";s:279:\"M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z\";s:3:\"key\";s:14:\"eicon-menu-bar\";}s:7:\"version\";s:6:\"5.13.0\";}s:11:\"eicon-close\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"path\";s:361:\"M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z\";s:3:\"key\";s:11:\"eicon-close\";}s:7:\"version\";s:6:\"5.13.0\";}s:18:\"eicon-chevron-left\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"path\";s:281:\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\";s:3:\"key\";s:18:\"eicon-chevron-left\";}s:7:\"version\";s:6:\"5.13.0\";}s:19:\"eicon-chevron-right\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"path\";s:281:\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\";s:3:\"key\";s:19:\"eicon-chevron-right\";}s:7:\"version\";s:6:\"5.13.0\";}s:23:\"fas-chevron-circle-left\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:261:\"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z\";s:3:\"key\";s:23:\"fas-chevron-circle-left\";}s:7:\"version\";s:6:\"5.15.3\";}s:24:\"fas-chevron-circle-right\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:258:\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\";s:3:\"key\";s:24:\"fas-chevron-circle-right\";}s:7:\"version\";s:6:\"5.15.3\";}}}s:3:\"css\";a:1:{s:7:\"widgets\";a:23:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.15.3\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.15.3\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:4947:\"<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:6:\"3.15.3\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.15.3\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:129:\"<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.15.3\";}s:9:\"shortcode\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:18:\"bizmax-hero-slider\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:14:\"call-to-action\";a:2:{s:7:\"content\";s:138:\"<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">\";s:7:\"version\";s:6:\"3.15.0\";}s:12:\"loop-builder\";a:2:{s:7:\"content\";s:136:\"<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor-pro/assets/css/widget-loop-builder.min.css\">\";s:7:\"version\";s:6:\"3.15.0\";}s:15:\"navigation-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:21:\"bizmax-service-detail\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:14:\"bizmax-contact\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:29:\"bizmax-service-detail-feature\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:10:\"bizmax-faq\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:20:\"bizmax-section-title\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:15:\"bizmax-services\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:18:\"bizmax-brand-logos\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:19:\"bizmax-testimonials\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:19:\"bizmax-contact-list\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:21:\"bizmax-contact-modern\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:924:\"<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>\";s:7:\"version\";s:6:\"3.15.3\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}s:23:\"bizmax-about-experience\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.15.3\";}}}}','yes'),(7491,'_elementor_global_css','a:6:{s:4:\"time\";i:1712095488;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(9255,'_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:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1719917002;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}','no');
INSERT INTO `wpsl_options` VALUES (9257,'elementor_pro_remote_info_api_data_3.15.0','a:2:{s:7:\"timeout\";i:1719343442;s:5:\"value\";s:219082:\"{\"stable_version\":\"3.22.1\",\"last_updated\":\"2024-06-24 12:10:43\",\"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:204501:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\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.22.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.5\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9lc2lnby5mdXR1cmVtZWRpYXRyaXguY29tIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTcxOTI3MTQ0MSwiZXhwIjoxNzE5MzU3ODQxfQ.Nlq8e3C1L8SNBxaJjkJp-QRVhSZGppdwHGVRE872zoQ\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9lc2lnby5mdXR1cmVtZWRpYXRyaXguY29tIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTcxOTI3MTQ0MSwiZXhwIjoxNzE5MzU3ODQxfQ.Nlq8e3C1L8SNBxaJjkJp-QRVhSZGppdwHGVRE872zoQ\\/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.5.5\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9lc2lnby5mdXR1cmVtZWRpYXRyaXguY29tIiwiaWF0IjoxNzE5MjcxNDQxLCJleHAiOjE3MTkzNTc4NDF9.uYwI9FPaaH8sDFEFoSrhMW--0xyAzeeKid0cLd44kuA\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9lc2lnby5mdXR1cmVtZWRpYXRyaXguY29tIiwiaWF0IjoxNzE5MjcxNDQxLCJleHAiOjE3MTkzNTc4NDF9.uYwI9FPaaH8sDFEFoSrhMW--0xyAzeeKid0cLd44kuA\\/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}\";}','no'),(9263,'_transient_timeout_elementor_rollback_versions_3.15.3','1719989890','no'),(9264,'_transient_elementor_rollback_versions_3.15.3','a:30:{i:0;s:6:\"3.15.2\";i:1;s:6:\"3.15.1\";i:2;s:6:\"3.15.0\";i:3;s:6:\"3.14.1\";i:4;s:6:\"3.14.0\";i:5;s:6:\"3.13.4\";i:6;s:6:\"3.13.3\";i:7;s:6:\"3.13.2\";i:8;s:6:\"3.13.1\";i:9;s:6:\"3.13.0\";i:10;s:6:\"3.12.2\";i:11;s:6:\"3.12.1\";i:12;s:6:\"3.12.0\";i:13;s:6:\"3.11.5\";i:14;s:6:\"3.11.4\";i:15;s:6:\"3.11.3\";i:16;s:6:\"3.11.2\";i:17;s:6:\"3.11.1\";i:18;s:6:\"3.11.0\";i:19;s:6:\"3.10.2\";i:20;s:6:\"3.10.1\";i:21;s:6:\"3.10.0\";i:22;s:5:\"3.9.2\";i:23;s:5:\"3.9.1\";i:24;s:5:\"3.9.0\";i:25;s:5:\"3.8.1\";i:26;s:5:\"3.8.0\";i:27;s:5:\"3.7.8\";i:28;s:5:\"3.7.7\";i:29;s:5:\"3.7.6\";}','no'),(9293,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1720094828','no'),(9294,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(9358,'_site_transient_timeout_bsf_analytics_track','1719985451','no'),(9359,'_site_transient_bsf_analytics_track','1','no'),(9384,'_transient_timeout_mc4wp_mailchimp_lists','1719997548','no'),(9385,'_transient_mc4wp_mailchimp_lists','a:0:{}','no'),(9387,'updraft_combine_jobs_around','1719981745','yes'),(9392,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1719955742;s:7:\"checked\";a:5:{s:9:\"bizmax-wp\";s:5:\"1.0.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"1.9\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.5\";}s:8:\"response\";a:4:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.2.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(9393,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1719984541;s:8:\"response\";a:12:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:30:\"w.org/plugins/breadcrumb-navxt\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"7.3.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";s:3:\"svg\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103\";s:2:\"1x\";s:71:\"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.9.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.9.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}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.22.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:6:\"1.6.36\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.36.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2813167\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2813167\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:3:\"5.4\";s:16:\"requires_plugins\";a:0:{}}s:23:\"loco-translate/loco.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:28:\"w.org/plugins/loco-translate\";s:4:\"slug\";s:14:\"loco-translate\";s:6:\"plugin\";s:23:\"loco-translate/loco.php\";s:11:\"new_version\";s:6:\"2.6.10\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/loco-translate/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/loco-translate.2.6.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-256x256.png?rev=1000676\";s:2:\"1x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-128x128.png?rev=1000676\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/loco-translate/assets/banner-772x250.jpg?rev=745046\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:54:\"<ul>\n<li>Various improvements and bug fixes</li>\n</ul>\";}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:6:\"4.9.13\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:47:\"one-click-demo-import/one-click-demo-import.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/one-click-demo-import\";s:4:\"slug\";s:21:\"one-click-demo-import\";s:6:\"plugin\";s:47:\"one-click-demo-import/one-click-demo-import.php\";s:11:\"new_version\";s:5:\"3.2.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/one-click-demo-import/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/one-click-demo-import.3.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-256x256.png?rev=2506685\";s:2:\"1x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-128x128.png?rev=2506685\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/one-click-demo-import/assets/banner-1544x500.png?rev=2506685\";s:2:\"1x\";s:76:\"https://ps.w.org/one-click-demo-import/assets/banner-772x250.png?rev=2506685\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:6:\"1.24.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/updraftplus.1.24.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";s:6:\"tested\";s:3:\"6.6\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:27:\"wp-optimize/wp-optimize.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/wp-optimize\";s:4:\"slug\";s:11:\"wp-optimize\";s:6:\"plugin\";s:27:\"wp-optimize/wp-optimize.php\";s:11:\"new_version\";s:5:\"3.4.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-optimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-optimize.3.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-256x256.png?rev=1552899\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-128x128.png?rev=1552899\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-optimize/assets/banner-1544x500.png?rev=2125385\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-optimize/assets/banner-772x250.png?rev=2125385\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";s:6:\"tested\";s:3:\"6.6\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:35:\"insert-headers-and-footers/ihaf.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:40:\"w.org/plugins/insert-headers-and-footers\";s:4:\"slug\";s:26:\"insert-headers-and-footers\";s:6:\"plugin\";s:35:\"insert-headers-and-footers/ihaf.php\";s:11:\"new_version\";s:6:\"2.1.14\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/insert-headers-and-footers/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=2758516\";s:2:\"1x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-128x128.png?rev=2758516\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/insert-headers-and-footers/assets/banner-1544x500.png?rev=2758516\";s:2:\"1x\";s:81:\"https://ps.w.org/insert-headers-and-footers/assets/banner-772x250.png?rev=2758516\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:3:\"5.5\";s:16:\"requires_plugins\";a:0:{}}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.22.1\";s:12:\"last_updated\";s:19:\"2024-06-24 12:10:43\";s:11:\"new_version\";s:6:\"3.22.1\";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:5:\"6.5.5\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:339:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9lc2lnby5mdXR1cmVtZWRpYXRyaXguY29tIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTcxOTI3MTQ0MSwiZXhwIjoxNzE5MzU3ODQxfQ.Nlq8e3C1L8SNBxaJjkJp-QRVhSZGppdwHGVRE872zoQ/package_download\";s:13:\"download_link\";s:339:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9lc2lnby5mdXR1cmVtZWRpYXRyaXguY29tIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTcxOTI3MTQ0MSwiZXhwIjoxNzE5MzU3ODQxfQ.Nlq8e3C1L8SNBxaJjkJp-QRVhSZGppdwHGVRE872zoQ/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:5:\"6.5.5\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:315:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9lc2lnby5mdXR1cmVtZWRpYXRyaXguY29tIiwiaWF0IjoxNzE5MjcxNDQxLCJleHAiOjE3MTkzNTc4NDF9.uYwI9FPaaH8sDFEFoSrhMW--0xyAzeeKid0cLd44kuA/previous_download\";s:13:\"download_link\";s:315:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9lc2lnby5mdXR1cmVtZWRpYXRyaXguY29tIiwiaWF0IjoxNzE5MjcxNDQxLCJleHAiOjE3MTkzNTc4NDF9.uYwI9FPaaH8sDFEFoSrhMW--0xyAzeeKid0cLd44kuA/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:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:5:\"4.5.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}s:7:\"checked\";a:1:{s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.22.1\";}}','no'),(9395,'_site_transient_timeout_theme_roots','1719957541','no'),(9396,'_site_transient_theme_roots','a:5:{s:9:\"bizmax-wp\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no');
/*!40000 ALTER TABLE `wpsl_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_postmeta`
--

DROP TABLE IF EXISTS `wpsl_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=13472 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_postmeta`
--

LOCK TABLES `wpsl_postmeta` WRITE;
/*!40000 ALTER TABLE `wpsl_postmeta` DISABLE KEYS */;
INSERT INTO `wpsl_postmeta` VALUES (12,8,'_elementor_edit_mode','builder'),(13,8,'_elementor_template_type','kit'),(15,9,'_wp_attached_file','2023/08/log_file_2023-08-23__04-01-26.txt'),(16,4703,'_wp_attached_file','2023/07/about_img_1.png'),(17,4703,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:801;s:6:\"height\";i:926;s:4:\"file\";s:23:\"2023/07/about_img_1.png\";s:8:\"filesize\";i:392271;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"about_img_1-260x300.png\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119071;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"about_img_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:42002;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"about_img_1-768x888.png\";s:5:\"width\";i:768;s:6:\"height\";i:888;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:774299;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:23:\"about_img_1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:237607;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:23:\"about_img_1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187134;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:23:\"about_img_1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:408497;}}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:{}}}'),(18,4704,'_wp_attached_file','2023/07/arrow_shape.png'),(19,4704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:110;s:4:\"file\";s:23:\"2023/07/arrow_shape.png\";s:8:\"filesize\";i:1844;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:{}}}'),(20,4705,'_wp_attached_file','2023/07/avatar_1.png'),(21,4705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:113;s:4:\"file\";s:20:\"2023/07/avatar_1.png\";s:8:\"filesize\";i:22819;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:{}}}'),(22,4706,'_wp_attached_file','2023/07/avatar_2.jpeg'),(23,4706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:21:\"2023/07/avatar_2.jpeg\";s:8:\"filesize\";i:9838;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:{}}}'),(24,4707,'_wp_attached_file','2023/07/avatar_2.png'),(25,4707,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:113;s:4:\"file\";s:20:\"2023/07/avatar_2.png\";s:8:\"filesize\";i:20418;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:{}}}'),(26,4708,'_wp_attached_file','2023/07/avatar_3.png'),(27,4708,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:113;s:4:\"file\";s:20:\"2023/07/avatar_3.png\";s:8:\"filesize\";i:28757;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:{}}}'),(28,4709,'_wp_attached_file','2023/07/avatar_4.png'),(29,4709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:113;s:4:\"file\";s:20:\"2023/07/avatar_4.png\";s:8:\"filesize\";i:24853;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:{}}}'),(30,4710,'_wp_attached_file','2023/07/avatar_5.png'),(31,4710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:169;s:6:\"height\";i:169;s:4:\"file\";s:20:\"2023/07/avatar_5.png\";s:8:\"filesize\";i:51747;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"avatar_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:39514;}}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:{}}}'),(32,4711,'_wp_attached_file','2023/07/avatar_6.png'),(33,4711,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:169;s:6:\"height\";i:169;s:4:\"file\";s:20:\"2023/07/avatar_6.png\";s:8:\"filesize\";i:50509;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"avatar_6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38322;}}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:{}}}'),(34,4712,'_wp_attached_file','2023/07/brand_1.png'),(35,4712,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:132;s:6:\"height\";i:36;s:4:\"file\";s:19:\"2023/07/brand_1.png\";s:8:\"filesize\";i:2918;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:{}}}'),(36,4713,'_wp_attached_file','2023/07/brand_1.svg'),(37,4713,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8941;s:5:\"width\";i:180;s:6:\"height\";i:38;}'),(39,4714,'_wp_attached_file','2023/07/brand_2.png'),(40,4714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:136;s:6:\"height\";i:36;s:4:\"file\";s:19:\"2023/07/brand_2.png\";s:8:\"filesize\";i:3923;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:{}}}'),(41,4715,'_wp_attached_file','2023/07/brand_2.svg'),(42,4715,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8428;s:5:\"width\";i:190;s:6:\"height\";i:38;}'),(44,4716,'_wp_attached_file','2023/07/brand_3.png'),(45,4716,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:153;s:6:\"height\";i:36;s:4:\"file\";s:19:\"2023/07/brand_3.png\";s:8:\"filesize\";i:2572;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"brand_3-150x36.png\";s:5:\"width\";i:150;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1901;}}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:{}}}'),(46,4717,'_wp_attached_file','2023/07/brand_3.svg'),(47,4717,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8301;s:5:\"width\";i:202;s:6:\"height\";i:38;}'),(49,4718,'_wp_attached_file','2023/07/brand_4.png'),(50,4718,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:129;s:6:\"height\";i:38;s:4:\"file\";s:19:\"2023/07/brand_4.png\";s:8:\"filesize\";i:2512;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:{}}}'),(51,4719,'_wp_attached_file','2023/07/brand_4.svg'),(52,4719,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:7197;s:5:\"width\";i:126;s:6:\"height\";i:38;}'),(54,4720,'_wp_attached_file','2023/07/brand_5.png'),(55,4720,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:205;s:6:\"height\";i:44;s:4:\"file\";s:19:\"2023/07/brand_5.png\";s:8:\"filesize\";i:4272;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"brand_5-150x44.png\";s:5:\"width\";i:150;s:6:\"height\";i:44;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2527;}}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:{}}}'),(56,4721,'_wp_attached_file','2023/07/brand_5.svg'),(57,4721,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:10677;s:5:\"width\";i:194;s:6:\"height\";i:38;}'),(59,4722,'_wp_attached_file','2023/07/brand_6.svg'),(60,4722,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:9591;s:5:\"width\";i:158;s:6:\"height\";i:38;}'),(62,4723,'_wp_attached_file','2023/07/contact_bg.jpeg'),(63,4723,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:23:\"2023/07/contact_bg.jpeg\";s:8:\"filesize\";i:79765;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"contact_bg-300x117.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1397;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"contact_bg-1024x400.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9199;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"contact_bg-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:485;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"contact_bg-768x300.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5841;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"contact_bg-1536x600.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17980;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:23:\"contact_bg-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1368;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:23:\"contact_bg-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1444;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:23:\"contact_bg-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4080;}}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:{}}}'),(64,4724,'_wp_attached_file','2023/07/contact_bg.png'),(65,4724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:22:\"2023/07/contact_bg.png\";s:8:\"filesize\";i:46008;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"contact_bg-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2598;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"contact_bg-1024x400.png\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23298;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"contact_bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:929;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"contact_bg-768x300.png\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16007;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"contact_bg-1536x600.png\";s:5:\"width\";i:1536;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40335;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"contact_bg-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2251;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"contact_bg-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2738;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"contact_bg-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8663;}}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:{}}}'),(66,4725,'_wp_attached_file','2023/07/contact_bg_2.jpeg'),(67,4725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2023/07/contact_bg_2.jpeg\";s:8:\"filesize\";i:155513;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"contact_bg_2-300x143.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2236;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"contact_bg_2-1024x486.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"contact_bg_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"contact_bg_2-768x365.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9771;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"contact_bg_2-1536x730.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:730;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28752;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"contact_bg_2-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3480;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"contact_bg_2-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3468;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"contact_bg_2-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10096;}}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:{}}}'),(68,4726,'_wp_attached_file','2023/07/contact_bg_pattern.svg'),(69,4726,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:227881;s:5:\"width\";i:486;s:6:\"height\";i:487;}'),(71,4727,'_wp_attached_file','2023/07/contact_form_shape.svg'),(72,4727,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:227881;s:5:\"width\";i:486;s:6:\"height\";i:487;}'),(74,4728,'_wp_attached_file','2023/07/contact_img_1.png'),(75,4728,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:638;s:6:\"height\";i:1011;s:4:\"file\";s:25:\"2023/07/contact_img_1.png\";s:8:\"filesize\";i:295898;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"contact_img_1-189x300.png\";s:5:\"width\";i:189;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"contact_img_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:28988;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"contact_img_1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157758;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"contact_img_1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121548;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"contact_img_1-638x400.png\";s:5:\"width\";i:638;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152309;}}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:{}}}'),(76,4729,'_wp_attached_file','2023/07/cta_bg-scaled-1.jpeg'),(77,4729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1182;s:4:\"file\";s:28:\"2023/07/cta_bg-scaled-1.jpeg\";s:8:\"filesize\";i:82364;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"cta_bg-scaled-1-300x139.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1718;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"cta_bg-scaled-1-1024x473.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14443;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"cta_bg-scaled-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:1043;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"cta_bg-scaled-1-768x355.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8685;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"cta_bg-scaled-1-1536x709.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:709;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27795;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"cta_bg-scaled-1-2048x946.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:946;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42077;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"cta_bg-scaled-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3213;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"cta_bg-scaled-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3033;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"cta_bg-scaled-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9525;}}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:{}}}'),(78,4730,'_wp_attached_file','2023/07/drag.png'),(79,4730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:20;s:6:\"height\";i:23;s:4:\"file\";s:16:\"2023/07/drag.png\";s:8:\"filesize\";i:282;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:{}}}'),(80,4731,'_wp_attached_file','2023/07/experience_bg.jpeg'),(81,4731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:446;s:6:\"height\";i:544;s:4:\"file\";s:26:\"2023/07/experience_bg.jpeg\";s:8:\"filesize\";i:141728;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"experience_bg-246x300.jpeg\";s:5:\"width\";i:246;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10294;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"experience_bg-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4175;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"experience_bg-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17347;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"experience_bg-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14247;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"experience_bg-446x400.jpeg\";s:5:\"width\";i:446;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19148;}}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:{}}}'),(82,4732,'_wp_attached_file','2023/07/experience_bg_2.jpeg'),(83,4732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:396;s:6:\"height\";i:246;s:4:\"file\";s:28:\"2023/07/experience_bg_2.jpeg\";s:8:\"filesize\";i:66843;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"experience_bg_2-300x186.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"experience_bg_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4502;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"experience_bg_2-354x246.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13700;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"experience_bg_2-355x246.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13796;}}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:{}}}'),(84,4733,'_wp_attached_file','2023/07/experience_icon.svg'),(85,4733,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8629;s:5:\"width\";i:47;s:6:\"height\";i:60;}'),(87,4734,'_wp_attached_file','2023/07/experience_img.jpeg'),(88,4734,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:745;s:4:\"file\";s:27:\"2023/07/experience_img.jpeg\";s:8:\"filesize\";i:159269;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"experience_img-254x300.jpeg\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13534;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"experience_img-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6105;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:27:\"experience_img-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22892;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:27:\"experience_img-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19492;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:27:\"experience_img-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32912;}}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:{}}}'),(89,4735,'_wp_attached_file','2023/07/experience_img.png'),(90,4735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:745;s:4:\"file\";s:26:\"2023/07/experience_img.png\";s:8:\"filesize\";i:264199;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"experience_img-254x300.png\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96135;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"experience_img-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33672;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"experience_img-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:192081;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"experience_img-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153043;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"experience_img-630x400.png\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:248762;}}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:{}}}'),(91,4736,'_wp_attached_file','2023/07/experience_shape_1.png'),(92,4736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:153;s:6:\"height\";i:162;s:4:\"file\";s:30:\"2023/07/experience_shape_1.png\";s:8:\"filesize\";i:754;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"experience_shape_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:5272;}}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:{}}}'),(93,4737,'_wp_attached_file','2023/07/faq_bg.jpeg'),(94,4737,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:785;s:4:\"file\";s:19:\"2023/07/faq_bg.jpeg\";s:8:\"filesize\";i:309936;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"faq_bg-300x123.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8937;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"faq_bg-1024x419.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"faq_bg-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6070;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"faq_bg-768x314.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35395;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"faq_bg-1536x628.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98923;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"faq_bg-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24293;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"faq_bg-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20699;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"faq_bg-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41747;}}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:{}}}'),(95,4738,'_wp_attached_file','2023/07/favicon.png'),(96,4738,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:19:\"2023/07/favicon.png\";s:8:\"filesize\";i:1783;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:{}}}'),(97,4739,'_wp_attached_file','2023/07/footer_bg.jpeg'),(98,4739,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:592;s:4:\"file\";s:22:\"2023/07/footer_bg.jpeg\";s:8:\"filesize\";i:69206;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"footer_bg-300x93.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1715;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"footer_bg-1024x316.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8317;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"footer_bg-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1495;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"footer_bg-768x237.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5393;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"footer_bg-1536x474.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15825;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"footer_bg-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4635;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"footer_bg-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3778;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"footer_bg-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7374;}}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:{}}}'),(99,4740,'_wp_attached_file','2023/07/gallery_bg.jpeg'),(100,4740,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1294;s:4:\"file\";s:23:\"2023/07/gallery_bg.jpeg\";s:8:\"filesize\";i:118252;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"gallery_bg-300x202.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1417;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"gallery_bg-1024x690.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"gallery_bg-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:694;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"gallery_bg-768x518.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7194;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"gallery_bg-1536x1035.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1035;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26382;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:23:\"gallery_bg-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2578;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:23:\"gallery_bg-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2384;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:23:\"gallery_bg-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5583;}}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:{}}}'),(101,4741,'_wp_attached_file','2023/07/hero_highlight_shape.svg'),(102,4741,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:415;s:5:\"width\";i:353;s:6:\"height\";i:34;}'),(104,4742,'_wp_attached_file','2023/07/hero_slider_1.jpeg'),(105,4742,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:26:\"2023/07/hero_slider_1.jpeg\";s:8:\"filesize\";i:279110;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"hero_slider_1-300x141.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10026;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"hero_slider_1-1024x481.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60899;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"hero_slider_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:6597;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"hero_slider_1-768x360.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38541;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"hero_slider_1-1536x721.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117188;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28330;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22349;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41302;}}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:{}}}'),(106,4743,'_wp_attached_file','2023/07/hero_slider_2.jpeg'),(107,4743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:26:\"2023/07/hero_slider_2.jpeg\";s:8:\"filesize\";i:314564;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"hero_slider_2-300x141.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11590;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"hero_slider_2-1024x481.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80159;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"hero_slider_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7600;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"hero_slider_2-768x360.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49614;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"hero_slider_2-1536x721.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156330;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_2-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33970;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_2-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28200;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_2-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53493;}}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:{}}}'),(108,4744,'_wp_attached_file','2023/07/hero_slider_3.jpeg'),(109,4744,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:26:\"2023/07/hero_slider_3.jpeg\";s:8:\"filesize\";i:314073;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"hero_slider_3-300x141.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11974;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"hero_slider_3-1024x481.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"hero_slider_3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6806;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"hero_slider_3-768x360.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50092;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"hero_slider_3-1536x721.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147004;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_3-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27144;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_3-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23479;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_3-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52427;}}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:{}}}'),(110,4745,'_wp_attached_file','2023/07/hero_slider_4.jpeg'),(111,4745,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:26:\"2023/07/hero_slider_4.jpeg\";s:8:\"filesize\";i:339026;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"hero_slider_4-300x141.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12479;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"hero_slider_4-1024x481.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"hero_slider_4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6358;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"hero_slider_4-768x360.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53919;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"hero_slider_4-1536x721.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156311;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_4-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26413;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_4-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21564;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"hero_slider_4-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54052;}}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:{}}}'),(112,4746,'_wp_attached_file','2023/07/loading.gif'),(113,4746,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:19:\"2023/07/loading.gif\";s:8:\"filesize\";i:4178;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:{}}}'),(114,4747,'_wp_attached_file','2023/07/logo.svg'),(115,4747,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:6356;s:5:\"width\";i:157;s:6:\"height\";i:48;}'),(117,4748,'_wp_attached_file','2023/07/moving_text_shape.png'),(118,4748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3840;s:6:\"height\";i:394;s:4:\"file\";s:29:\"2023/07/moving_text_shape.png\";s:8:\"filesize\";i:69319;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"moving_text_shape-300x31.png\";s:5:\"width\";i:300;s:6:\"height\";i:31;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4054;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"moving_text_shape-1024x105.png\";s:5:\"width\";i:1024;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"moving_text_shape-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4027;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"moving_text_shape-768x79.png\";s:5:\"width\";i:768;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17419;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"moving_text_shape-1536x158.png\";s:5:\"width\";i:1536;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48429;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"moving_text_shape-2048x210.png\";s:5:\"width\";i:2048;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73786;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:29:\"moving_text_shape-354x394.png\";s:5:\"width\";i:354;s:6:\"height\";i:394;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12295;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:29:\"moving_text_shape-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13152;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:29:\"moving_text_shape-738x394.png\";s:5:\"width\";i:738;s:6:\"height\";i:394;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23843;}}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:{}}}'),(119,4749,'_wp_attached_file','2023/07/page_header_1.jpeg'),(120,4749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2023/07/page_header_1.jpeg\";s:8:\"filesize\";i:240908;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"page_header_1-300x100.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10070;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"page_header_1-1024x341.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63663;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"page_header_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:7470;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"page_header_1-768x256.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40230;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"page_header_1-1536x511.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118555;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"page_header_1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35146;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"page_header_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28612;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"page_header_1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61943;}}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:{}}}'),(121,4750,'_wp_attached_file','2023/07/portfolio_1.jpeg'),(122,4750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:740;s:4:\"file\";s:24:\"2023/07/portfolio_1.jpeg\";s:8:\"filesize\";i:104170;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"portfolio_1-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17466;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"portfolio_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:7005;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23374;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21950;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_1-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32944;}}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:{}}}'),(123,4751,'_wp_attached_file','2023/07/portfolio_2.jpeg'),(124,4751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:740;s:4:\"file\";s:24:\"2023/07/portfolio_2.jpeg\";s:8:\"filesize\";i:123909;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"portfolio_2-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19975;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"portfolio_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7364;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_2-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29117;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_2-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25711;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_2-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42771;}}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:{}}}'),(125,4752,'_wp_attached_file','2023/07/portfolio_3.jpeg'),(126,4752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:740;s:4:\"file\";s:24:\"2023/07/portfolio_3.jpeg\";s:8:\"filesize\";i:132352;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"portfolio_3-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"portfolio_3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7896;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_3-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36503;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_3-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30475;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_3-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57174;}}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:{}}}'),(127,4753,'_wp_attached_file','2023/07/portfolio_4.jpeg'),(128,4753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:740;s:4:\"file\";s:24:\"2023/07/portfolio_4.jpeg\";s:8:\"filesize\";i:90057;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"portfolio_4-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"portfolio_4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4672;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_4-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17449;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_4-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14039;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"portfolio_4-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27853;}}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:{}}}'),(129,4754,'_wp_attached_file','2023/07/post_1.jpeg'),(130,4754,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:519;s:4:\"file\";s:19:\"2023/07/post_1.jpeg\";s:8:\"filesize\";i:105473;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"post_1-300x249.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15957;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"post_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:6703;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"post_1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25961;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"post_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22559;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"post_1-625x400.jpeg\";s:5:\"width\";i:625;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40975;}}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:{}}}'),(131,4755,'_wp_attached_file','2023/07/post_2.jpeg'),(132,4755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:519;s:4:\"file\";s:19:\"2023/07/post_2.jpeg\";s:8:\"filesize\";i:88529;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"post_2-300x249.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13011;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"post_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5761;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"post_2-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20079;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"post_2-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17223;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"post_2-625x400.jpeg\";s:5:\"width\";i:625;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29240;}}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:{}}}'),(133,4756,'_wp_attached_file','2023/07/post_3.jpeg'),(134,4756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:519;s:4:\"file\";s:19:\"2023/07/post_3.jpeg\";s:8:\"filesize\";i:98809;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"post_3-300x249.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"post_3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6003;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"post_3-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27710;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"post_3-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21420;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"post_3-625x400.jpeg\";s:5:\"width\";i:625;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38951;}}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:{}}}'),(135,4757,'_wp_attached_file','2023/07/post_4.jpeg'),(136,4757,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:299;s:6:\"height\";i:426;s:4:\"file\";s:19:\"2023/07/post_4.jpeg\";s:8:\"filesize\";i:91689;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"post_4-211x300.jpeg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11375;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"post_4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5242;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"post_4-299x345.jpeg\";s:5:\"width\";i:299;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17721;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"post_4-299x400.jpeg\";s:5:\"width\";i:299;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19352;}}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:{}}}'),(137,4758,'_wp_attached_file','2023/07/post_5.jpeg'),(138,4758,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:299;s:6:\"height\";i:426;s:4:\"file\";s:19:\"2023/07/post_5.jpeg\";s:8:\"filesize\";i:51152;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"post_5-211x300.jpeg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12461;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"post_5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5923;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"post_5-299x345.jpeg\";s:5:\"width\";i:299;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18867;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"post_5-299x400.jpeg\";s:5:\"width\";i:299;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20977;}}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:{}}}'),(139,4759,'_wp_attached_file','2023/07/post_6.jpeg'),(140,4759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:520;s:4:\"file\";s:19:\"2023/07/post_6.jpeg\";s:8:\"filesize\";i:136198;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"post_6-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17560;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"post_6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7243;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"post_6-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29820;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"post_6-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24855;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"post_6-624x400.jpeg\";s:5:\"width\";i:624;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45717;}}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:{}}}'),(141,4760,'_wp_attached_file','2023/07/post_7.jpeg'),(142,4760,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:520;s:4:\"file\";s:19:\"2023/07/post_7.jpeg\";s:8:\"filesize\";i:137135;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"post_7-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17037;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"post_7-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7150;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"post_7-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29484;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"post_7-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24323;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"post_7-624x400.jpeg\";s:5:\"width\";i:624;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42271;}}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:{}}}'),(143,4761,'_wp_attached_file','2023/07/cropped-favicon.png'),(144,4761,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2023/07/cropped-favicon.png\";s:8:\"filesize\";i:5190;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"cropped-favicon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12106;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-favicon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9433;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:27:\"cropped-favicon-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9847;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:27:\"cropped-favicon-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11872;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:27:\"cropped-favicon-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4775;}}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:{}}}'),(145,4761,'_wp_attachment_context','site-icon'),(146,4762,'_wp_attached_file','2023/07/post_8.jpeg'),(147,4762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:520;s:4:\"file\";s:19:\"2023/07/post_8.jpeg\";s:8:\"filesize\";i:140777;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"post_8-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16754;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"post_8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6762;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"post_8-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27266;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"post_8-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22790;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"post_8-624x400.jpeg\";s:5:\"width\";i:624;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41757;}}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:{}}}'),(148,4763,'_wp_attached_file','2023/07/post_9.jpeg'),(149,4763,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:509;s:4:\"file\";s:19:\"2023/07/post_9.jpeg\";s:8:\"filesize\";i:163937;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"post_9-300x119.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9369;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"post_9-1024x406.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"post_9-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6402;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"post_9-768x304.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36266;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"post_9-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25027;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"post_9-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21483;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"post_9-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43050;}}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:{}}}'),(150,4765,'_wp_attached_file','2023/07/post_10.jpeg'),(151,4765,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:509;s:4:\"file\";s:20:\"2023/07/post_10.jpeg\";s:8:\"filesize\";i:138615;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"post_10-300x119.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8437;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"post_10-1024x406.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46006;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"post_10-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5414;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"post_10-768x304.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30482;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:20:\"post_10-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18753;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:20:\"post_10-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16505;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:20:\"post_10-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33747;}}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:{}}}'),(152,4766,'_wp_attached_file','2023/07/post_11.jpeg'),(153,4766,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:509;s:4:\"file\";s:20:\"2023/07/post_11.jpeg\";s:8:\"filesize\";i:207113;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"post_11-300x119.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9789;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"post_11-1024x406.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"post_11-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7285;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"post_11-768x304.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40705;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:20:\"post_11-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29377;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:20:\"post_11-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25949;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:20:\"post_11-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55039;}}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:{}}}'),(154,4767,'_wp_attached_file','2023/07/post-details-1.jpeg'),(155,4767,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:696;s:4:\"file\";s:27:\"2023/07/post-details-1.jpeg\";s:8:\"filesize\";i:220045;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"post-details-1-300x162.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12489;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"post-details-1-1024x555.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74844;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"post-details-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:6900;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"post-details-1-768x416.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48731;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:27:\"post-details-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27901;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:27:\"post-details-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23181;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:27:\"post-details-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46108;}}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:{}}}'),(156,4768,'_wp_attached_file','2023/07/project_1.jpeg'),(157,4768,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:611;s:6:\"height\";i:685;s:4:\"file\";s:22:\"2023/07/project_1.jpeg\";s:8:\"filesize\";i:120630;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"project_1-268x300.jpeg\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15993;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"project_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:6747;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"project_1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23966;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"project_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21277;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"project_1-611x400.jpeg\";s:5:\"width\";i:611;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30262;}}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:{}}}'),(158,4769,'_wp_attached_file','2023/07/project_2.jpeg'),(159,4769,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:610;s:6:\"height\";i:420;s:4:\"file\";s:22:\"2023/07/project_2.jpeg\";s:8:\"filesize\";i:130741;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"project_2-300x207.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16840;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"project_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7284;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"project_2-354x420.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30038;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"project_2-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26075;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"project_2-610x400.jpeg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52206;}}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:{}}}'),(160,4770,'_wp_attached_file','2023/07/project_3.jpeg'),(161,4770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:610;s:6:\"height\";i:685;s:4:\"file\";s:22:\"2023/07/project_3.jpeg\";s:8:\"filesize\";i:132910;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"project_3-267x300.jpeg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13966;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"project_3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5807;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"project_3-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22716;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"project_3-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19830;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"project_3-610x400.jpeg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38840;}}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:{}}}'),(162,4771,'_wp_attached_file','2023/07/project_4.jpeg'),(163,4771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:610;s:6:\"height\";i:685;s:4:\"file\";s:22:\"2023/07/project_4.jpeg\";s:8:\"filesize\";i:145004;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"project_4-267x300.jpeg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16023;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"project_4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6255;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"project_4-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27976;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"project_4-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22445;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"project_4-610x400.jpeg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44529;}}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:{}}}'),(164,4772,'_wp_attached_file','2023/07/project_5.jpeg'),(165,4772,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:610;s:6:\"height\";i:420;s:4:\"file\";s:22:\"2023/07/project_5.jpeg\";s:8:\"filesize\";i:134091;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"project_5-300x207.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16417;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"project_5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7571;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"project_5-354x420.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33594;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"project_5-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26560;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"project_5-610x400.jpeg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52654;}}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:{}}}'),(166,4773,'_wp_attached_file','2023/07/project_6.jpeg'),(167,4773,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:420;s:4:\"file\";s:22:\"2023/07/project_6.jpeg\";s:8:\"filesize\";i:115052;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"project_6-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"project_6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6426;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"project_6-354x420.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30078;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"project_6-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23038;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"project_6-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44992;}}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:{}}}'),(168,4774,'_wp_attached_file','2023/07/project_details_img.jpeg'),(169,4774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1040;s:4:\"file\";s:32:\"2023/07/project_details_img.jpeg\";s:8:\"filesize\";i:289365;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"project_details_img-300x163.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12850;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"project_details_img-1024x555.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74106;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"project_details_img-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6185;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"project_details_img-768x416.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48100;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"project_details_img-1536x832.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:832;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135862;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:32:\"project_details_img-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20855;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:32:\"project_details_img-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19770;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:32:\"project_details_img-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45868;}}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:{}}}'),(170,4775,'_wp_attached_file','2023/07/recent-post-1.jpeg'),(171,4775,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:140;s:4:\"file\";s:26:\"2023/07/recent-post-1.jpeg\";s:8:\"filesize\";i:35866;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:{}}}'),(172,4776,'_wp_attached_file','2023/07/recent-post-2.jpeg'),(173,4776,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:140;s:4:\"file\";s:26:\"2023/07/recent-post-2.jpeg\";s:8:\"filesize\";i:35182;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:{}}}'),(174,4777,'_wp_attached_file','2023/07/recent-post-3.jpeg'),(175,4777,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:140;s:4:\"file\";s:26:\"2023/07/recent-post-3.jpeg\";s:8:\"filesize\";i:31487;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:{}}}'),(176,4778,'_wp_attached_file','2023/07/service_1.jpeg'),(177,4778,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:362;s:4:\"file\";s:22:\"2023/07/service_1.jpeg\";s:8:\"filesize\";i:88886;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"service_1-300x262.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14882;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"service_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:6392;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"service_1-354x362.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22206;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"service_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20168;}}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:{}}}'),(178,4779,'_wp_attached_file','2023/07/service_2.jpeg'),(179,4779,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:362;s:4:\"file\";s:22:\"2023/07/service_2.jpeg\";s:8:\"filesize\";i:108517;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"service_2-300x262.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17452;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"service_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7026;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"service_2-354x362.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27787;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"service_2-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24514;}}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:{}}}'),(180,4780,'_wp_attached_file','2023/07/service_3.jpeg'),(181,4780,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:362;s:4:\"file\";s:22:\"2023/07/service_3.jpeg\";s:8:\"filesize\";i:105880;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"service_3-300x262.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"service_3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6752;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"service_3-354x362.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27466;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"service_3-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24320;}}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:{}}}'),(182,4781,'_wp_attached_file','2023/07/service_4.jpeg'),(183,4781,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:362;s:4:\"file\";s:22:\"2023/07/service_4.jpeg\";s:8:\"filesize\";i:109197;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"service_4-300x262.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16499;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"service_4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6431;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"service_4-354x362.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26345;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"service_4-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22906;}}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:{}}}'),(184,4782,'_wp_attached_file','2023/07/service-details-img-1.jpeg'),(185,4782,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:761;s:4:\"file\";s:34:\"2023/07/service-details-img-1.jpeg\";s:8:\"filesize\";i:262381;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"service-details-img-1-300x178.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11795;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"service-details-img-1-1024x606.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"service-details-img-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:6305;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"service-details-img-1-768x455.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44054;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:34:\"service-details-img-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24190;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:34:\"service-details-img-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20261;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:34:\"service-details-img-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37793;}}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:{}}}'),(186,4783,'_wp_attached_file','2023/07/service-details-img-2.jpeg'),(187,4783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:624;s:4:\"file\";s:34:\"2023/07/service-details-img-2.jpeg\";s:8:\"filesize\";i:156199;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"service-details-img-2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21611;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"service-details-img-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7228;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:34:\"service-details-img-2-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32840;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:34:\"service-details-img-2-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27594;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:34:\"service-details-img-2-625x400.jpeg\";s:5:\"width\";i:625;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45068;}}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:{}}}'),(188,4784,'_wp_attached_file','2023/07/service-list-card.jpeg'),(189,4784,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:416;s:6:\"height\";i:569;s:4:\"file\";s:30:\"2023/07/service-list-card.jpeg\";s:8:\"filesize\";i:75191;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"service-list-card-219x300.jpeg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5406;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"service-list-card-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2431;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:30:\"service-list-card-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10283;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:30:\"service-list-card-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8116;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:30:\"service-list-card-416x400.jpeg\";s:5:\"width\";i:416;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10153;}}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:{}}}'),(190,4785,'_wp_attached_file','2023/07/services_bg.jpeg'),(191,4785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1071;s:4:\"file\";s:24:\"2023/07/services_bg.jpeg\";s:8:\"filesize\";i:126244;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"services_bg-300x167.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1584;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"services_bg-1024x571.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12297;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"services_bg-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:959;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"services_bg-768x428.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7292;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"services_bg-1536x857.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:857;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23694;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"services_bg-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2592;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"services_bg-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2215;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"services_bg-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6453;}}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:{}}}'),(192,4786,'_wp_attached_file','2023/07/sidebar-project-1.jpeg'),(193,4786,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:263;s:4:\"file\";s:30:\"2023/07/sidebar-project-1.jpeg\";s:8:\"filesize\";i:58834;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"sidebar-project-1-300x158.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"sidebar-project-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:4145;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:30:\"sidebar-project-1-354x263.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11360;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:30:\"sidebar-project-1-355x263.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11329;}}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:{}}}'),(194,4787,'_wp_attached_file','2023/07/staps_bg.jpeg'),(195,4787,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1145;s:4:\"file\";s:21:\"2023/07/staps_bg.jpeg\";s:8:\"filesize\";i:42665;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"staps_bg-300x179.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1319;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"staps_bg-1024x611.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:611;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4778;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"staps_bg-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"staps_bg-768x458.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:458;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3276;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"staps_bg-1536x916.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:916;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8675;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"staps_bg-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1830;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"staps_bg-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1715;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"staps_bg-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2979;}}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:{}}}'),(196,4788,'_wp_attached_file','2023/07/step_1.jpeg'),(197,4788,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2023/07/step_1.jpeg\";s:8:\"filesize\";i:56577;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"step_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:13632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"step_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:5365;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"step_1-350x345.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18133;}}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:{}}}'),(198,4789,'_wp_attached_file','2023/07/step_2.jpeg'),(199,4789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2023/07/step_2.jpeg\";s:8:\"filesize\";i:68217;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"step_2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16161;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"step_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6122;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"step_2-350x345.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21611;}}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:{}}}'),(200,4790,'_wp_attached_file','2023/07/step_3.jpeg'),(201,4790,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2023/07/step_3.jpeg\";s:8:\"filesize\";i:56577;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"step_3-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"step_3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5365;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"step_3-350x345.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18133;}}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:{}}}'),(202,4791,'_wp_attached_file','2023/07/team_member_1.jpeg'),(203,4791,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:808;s:4:\"file\";s:26:\"2023/07/team_member_1.jpeg\";s:8:\"filesize\";i:116689;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"team_member_1-234x300.jpeg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9897;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"team_member_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:4449;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19261;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15747;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_1-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29901;}}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:{}}}'),(204,4792,'_wp_attached_file','2023/07/team_member_2.jpeg'),(205,4792,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:808;s:4:\"file\";s:26:\"2023/07/team_member_2.jpeg\";s:8:\"filesize\";i:99752;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"team_member_2-234x300.jpeg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"team_member_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4101;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_2-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14916;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_2-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11574;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_2-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18885;}}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:{}}}'),(206,4793,'_wp_attached_file','2023/07/team_member_3.jpeg'),(207,4793,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:808;s:4:\"file\";s:26:\"2023/07/team_member_3.jpeg\";s:8:\"filesize\";i:108141;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"team_member_3-234x300.jpeg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9568;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"team_member_3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4333;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_3-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17414;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_3-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13443;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_3-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19984;}}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:{}}}'),(208,4794,'_wp_attached_file','2023/07/team_member_4.jpeg'),(209,4794,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:738;s:6:\"height\";i:707;s:4:\"file\";s:26:\"2023/07/team_member_4.jpeg\";s:8:\"filesize\";i:131613;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"team_member_4-300x287.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9914;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"team_member_4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3954;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_4-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19703;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_4-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13475;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"team_member_4-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31498;}}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:{}}}'),(210,4795,'_wp_attached_file','2023/07/test_1.jpeg'),(211,4795,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:19:\"2023/07/test_1.jpeg\";s:8:\"filesize\";i:150593;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"test_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:17687;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"test_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:6408;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"test_1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26467;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"test_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22313;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"test_1-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40980;}}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:{}}}'),(212,4796,'_wp_attached_file','2023/07/test_2.jpeg'),(213,4796,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:19:\"2023/07/test_2.jpeg\";s:8:\"filesize\";i:159325;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"test_2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23790;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"test_2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8318;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"test_2-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36313;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"test_2-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30133;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"test_2-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55528;}}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:{}}}'),(214,4797,'_wp_attached_file','2023/07/testimonial_bg.jpeg'),(215,4797,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:663;s:4:\"file\";s:27:\"2023/07/testimonial_bg.jpeg\";s:8:\"filesize\";i:196319;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"testimonial_bg-300x104.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1544;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"testimonial_bg-1024x354.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10819;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"testimonial_bg-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1358;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"testimonial_bg-768x265.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6986;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"testimonial_bg-1536x530.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20671;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:27:\"testimonial_bg-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5620;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:27:\"testimonial_bg-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4771;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:27:\"testimonial_bg-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10133;}}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:{}}}'),(216,4798,'_wp_attached_file','2023/07/testimonial_bg_1.jpeg'),(217,4798,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:624;s:4:\"file\";s:29:\"2023/07/testimonial_bg_1.jpeg\";s:8:\"filesize\";i:160535;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"testimonial_bg_1-300x98.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1664;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"testimonial_bg_1-1024x333.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14010;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"testimonial_bg_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:1014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"testimonial_bg_1-768x250.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8585;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"testimonial_bg_1-1536x499.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26511;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:29:\"testimonial_bg_1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3436;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:29:\"testimonial_bg_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3139;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:29:\"testimonial_bg_1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9262;}}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:{}}}'),(218,4799,'_wp_attached_file','2023/07/testimonial_thumb_1.png'),(219,4799,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:31:\"2023/07/testimonial_thumb_1.png\";s:8:\"filesize\";i:61166;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"testimonial_thumb_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:30787;}}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:{}}}'),(220,4800,'_wp_attached_file','2023/07/testimonial_thumb_2.png'),(221,4800,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:226;s:6:\"height\";i:225;s:4:\"file\";s:31:\"2023/07/testimonial_thumb_2.png\";s:8:\"filesize\";i:56389;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"testimonial_thumb_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:28125;}}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:{}}}'),(222,4801,'_wp_attached_file','2023/07/testimonial_thumb_3.png'),(223,4801,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:226;s:6:\"height\";i:225;s:4:\"file\";s:31:\"2023/07/testimonial_thumb_3.png\";s:8:\"filesize\";i:89500;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"testimonial_thumb_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:42052;}}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:{}}}'),(224,4802,'_wp_attached_file','2023/07/video_block.jpeg'),(225,4802,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1037;s:4:\"file\";s:24:\"2023/07/video_block.jpeg\";s:8:\"filesize\";i:296057;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"video_block-300x162.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9165;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"video_block-1024x553.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50962;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"video_block-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4583;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"video_block-768x415.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33636;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"video_block-1536x830.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91287;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"video_block-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14809;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"video_block-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14117;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"video_block-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32099;}}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:{}}}'),(226,4803,'_wp_attached_file','2023/07/video_block_shape.jpeg'),(227,4803,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:663;s:4:\"file\";s:30:\"2023/07/video_block_shape.jpeg\";s:8:\"filesize\";i:196729;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"video_block_shape-300x104.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1662;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"video_block_shape-1024x354.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11534;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"video_block_shape-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1449;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"video_block_shape-768x265.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7316;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"video_block_shape-1536x530.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21835;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:30:\"video_block_shape-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5798;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:30:\"video_block_shape-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5013;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:30:\"video_block_shape-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10422;}}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:{}}}'),(228,4804,'_wp_attached_file','2023/07/video_block_text_shape.svg'),(229,4804,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:240;s:5:\"width\";i:136;s:6:\"height\";i:61;}'),(231,4805,'_wp_attached_file','2023/07/why_choose_us_left_img.jpeg'),(232,4805,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1237;s:6:\"height\";i:786;s:4:\"file\";s:35:\"2023/07/why_choose_us_left_img.jpeg\";s:8:\"filesize\";i:82303;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"why_choose_us_left_img-300x191.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2381;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"why_choose_us_left_img-1024x651.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15375;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"why_choose_us_left_img-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:869;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"why_choose_us_left_img-768x488.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:488;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9701;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:35:\"why_choose_us_left_img-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2907;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:35:\"why_choose_us_left_img-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2695;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:35:\"why_choose_us_left_img-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7752;}}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:{}}}'),(233,4806,'_wp_attached_file','2023/07/why_choose_us_right_img.jpeg'),(234,4806,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:949;s:6:\"height\";i:738;s:4:\"file\";s:36:\"2023/07/why_choose_us_right_img.jpeg\";s:8:\"filesize\";i:165723;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"why_choose_us_right_img-300x233.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13544;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"why_choose_us_right_img-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6213;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"why_choose_us_right_img-768x597.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56536;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:36:\"why_choose_us_right_img-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29014;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:36:\"why_choose_us_right_img-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21927;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:36:\"why_choose_us_right_img-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42379;}}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:{}}}'),(235,4807,'_wp_attached_file','2023/07/why_chose_1.jpeg'),(236,4807,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:990;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/07/why_chose_1.jpeg\";s:8:\"filesize\";i:130837;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"why_chose_1-300x182.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7562;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"why_chose_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:4195;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"why_chose_1-768x465.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30090;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"why_chose_1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15675;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"why_chose_1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13690;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"why_chose_1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26599;}}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:{}}}'),(237,4808,'_wp_attached_file','2023/07/about_img_1-1.png'),(238,4808,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:801;s:6:\"height\";i:926;s:4:\"file\";s:25:\"2023/07/about_img_1-1.png\";s:8:\"filesize\";i:392271;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"about_img_1-1-260x300.png\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119071;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"about_img_1-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:42002;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"about_img_1-1-768x888.png\";s:5:\"width\";i:768;s:6:\"height\";i:888;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:774299;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"about_img_1-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:237607;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"about_img_1-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187134;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"about_img_1-1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:408497;}}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:{}}}'),(239,4809,'_wp_attached_file','2023/07/arrow_shape-1.png'),(240,4809,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:110;s:4:\"file\";s:25:\"2023/07/arrow_shape-1.png\";s:8:\"filesize\";i:1844;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:{}}}'),(241,4810,'_wp_attached_file','2023/07/avatar_1-1.png'),(242,4810,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:113;s:4:\"file\";s:22:\"2023/07/avatar_1-1.png\";s:8:\"filesize\";i:22819;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:{}}}'),(243,4811,'_wp_attached_file','2023/07/avatar_2-1.jpeg'),(244,4811,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:23:\"2023/07/avatar_2-1.jpeg\";s:8:\"filesize\";i:9838;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:{}}}'),(245,4812,'_wp_attached_file','2023/07/avatar_2-1.png'),(246,4812,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:113;s:4:\"file\";s:22:\"2023/07/avatar_2-1.png\";s:8:\"filesize\";i:20418;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:{}}}'),(247,4813,'_wp_attached_file','2023/07/avatar_3-1.png'),(248,4813,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:113;s:4:\"file\";s:22:\"2023/07/avatar_3-1.png\";s:8:\"filesize\";i:28757;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:{}}}'),(249,4814,'_wp_attached_file','2023/07/avatar_4-1.png'),(250,4814,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:113;s:4:\"file\";s:22:\"2023/07/avatar_4-1.png\";s:8:\"filesize\";i:24853;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:{}}}'),(251,4815,'_wp_attached_file','2023/07/avatar_5-1.png'),(252,4815,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:169;s:6:\"height\";i:169;s:4:\"file\";s:22:\"2023/07/avatar_5-1.png\";s:8:\"filesize\";i:51747;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"avatar_5-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:39514;}}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:{}}}'),(253,4816,'_wp_attached_file','2023/07/avatar_6-1.png'),(254,4816,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:169;s:6:\"height\";i:169;s:4:\"file\";s:22:\"2023/07/avatar_6-1.png\";s:8:\"filesize\";i:50509;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"avatar_6-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:38322;}}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:{}}}'),(255,4817,'_wp_attached_file','2023/07/brand_1-1.png'),(256,4817,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:132;s:6:\"height\";i:36;s:4:\"file\";s:21:\"2023/07/brand_1-1.png\";s:8:\"filesize\";i:2918;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:{}}}'),(257,4818,'_wp_attached_file','2023/07/brand_1-1.svg'),(258,4818,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8941;s:5:\"width\";i:180;s:6:\"height\";i:38;}'),(260,4819,'_wp_attached_file','2023/07/brand_2-1.png'),(261,4819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:136;s:6:\"height\";i:36;s:4:\"file\";s:21:\"2023/07/brand_2-1.png\";s:8:\"filesize\";i:3923;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:{}}}'),(262,4820,'_wp_attached_file','2023/07/brand_2-1.svg'),(263,4820,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8428;s:5:\"width\";i:190;s:6:\"height\";i:38;}'),(265,4821,'_wp_attached_file','2023/07/brand_3-1.png'),(266,4821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:153;s:6:\"height\";i:36;s:4:\"file\";s:21:\"2023/07/brand_3-1.png\";s:8:\"filesize\";i:2572;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"brand_3-1-150x36.png\";s:5:\"width\";i:150;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1901;}}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:{}}}'),(267,4822,'_wp_attached_file','2023/07/brand_3-1.svg'),(268,4822,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8301;s:5:\"width\";i:202;s:6:\"height\";i:38;}'),(270,4823,'_wp_attached_file','2023/07/brand_4-1.png'),(271,4823,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:129;s:6:\"height\";i:38;s:4:\"file\";s:21:\"2023/07/brand_4-1.png\";s:8:\"filesize\";i:2512;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:{}}}'),(272,4824,'_wp_attached_file','2023/07/brand_4-1.svg'),(273,4824,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:7197;s:5:\"width\";i:126;s:6:\"height\";i:38;}'),(275,4825,'_wp_attached_file','2023/07/brand_5-1.png'),(276,4825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:205;s:6:\"height\";i:44;s:4:\"file\";s:21:\"2023/07/brand_5-1.png\";s:8:\"filesize\";i:4272;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"brand_5-1-150x44.png\";s:5:\"width\";i:150;s:6:\"height\";i:44;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2527;}}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:{}}}'),(277,4826,'_wp_attached_file','2023/07/brand_5-1.svg'),(278,4826,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:10677;s:5:\"width\";i:194;s:6:\"height\";i:38;}'),(280,4827,'_wp_attached_file','2023/07/brand_6-1.svg'),(281,4827,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:9591;s:5:\"width\";i:158;s:6:\"height\";i:38;}'),(283,4828,'_wp_attached_file','2023/07/contact_bg-1.jpeg'),(284,4828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:25:\"2023/07/contact_bg-1.jpeg\";s:8:\"filesize\";i:79765;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"contact_bg-1-300x117.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1397;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"contact_bg-1-1024x400.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9199;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"contact_bg-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:485;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"contact_bg-1-768x300.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5841;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"contact_bg-1-1536x600.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17980;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"contact_bg-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1368;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"contact_bg-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1444;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"contact_bg-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4080;}}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:{}}}'),(285,4829,'_wp_attached_file','2023/07/contact_bg-1.png'),(286,4829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:24:\"2023/07/contact_bg-1.png\";s:8:\"filesize\";i:46008;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"contact_bg-1-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2598;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"contact_bg-1-1024x400.png\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23298;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"contact_bg-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:929;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"contact_bg-1-768x300.png\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16007;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"contact_bg-1-1536x600.png\";s:5:\"width\";i:1536;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40335;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"contact_bg-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2251;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"contact_bg-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2738;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"contact_bg-1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8663;}}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:{}}}'),(287,4830,'_wp_attached_file','2023/07/contact_bg_2-1.jpeg'),(288,4830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:912;s:4:\"file\";s:27:\"2023/07/contact_bg_2-1.jpeg\";s:8:\"filesize\";i:155513;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"contact_bg_2-1-300x143.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2236;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"contact_bg_2-1-1024x486.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"contact_bg_2-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:1439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"contact_bg_2-1-768x365.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9771;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"contact_bg_2-1-1536x730.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:730;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28752;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:27:\"contact_bg_2-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3480;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:27:\"contact_bg_2-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3468;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:27:\"contact_bg_2-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10096;}}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:{}}}'),(289,4831,'_wp_attached_file','2023/07/contact_bg_pattern-1.svg'),(290,4831,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:227881;s:5:\"width\";i:486;s:6:\"height\";i:487;}'),(292,4832,'_wp_attached_file','2023/07/contact_form_shape-1.svg'),(293,4832,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:227881;s:5:\"width\";i:486;s:6:\"height\";i:487;}'),(295,4833,'_wp_attached_file','2023/07/contact_img_1-1.png'),(296,4833,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:638;s:6:\"height\";i:1011;s:4:\"file\";s:27:\"2023/07/contact_img_1-1.png\";s:8:\"filesize\";i:295898;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"contact_img_1-1-189x300.png\";s:5:\"width\";i:189;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"contact_img_1-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:28988;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:27:\"contact_img_1-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157758;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:27:\"contact_img_1-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121548;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:27:\"contact_img_1-1-638x400.png\";s:5:\"width\";i:638;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152309;}}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:{}}}'),(297,4834,'_wp_attached_file','2023/07/cta_bg-1-scaled-1.jpeg'),(298,4834,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1182;s:4:\"file\";s:30:\"2023/07/cta_bg-1-scaled-1.jpeg\";s:8:\"filesize\";i:82364;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"cta_bg-1-scaled-1-300x139.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1718;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"cta_bg-1-scaled-1-1024x473.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14443;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"cta_bg-1-scaled-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:1043;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"cta_bg-1-scaled-1-768x355.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8685;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"cta_bg-1-scaled-1-1536x709.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:709;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27795;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"cta_bg-1-scaled-1-2048x946.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:946;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42077;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:30:\"cta_bg-1-scaled-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3213;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:30:\"cta_bg-1-scaled-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3033;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:30:\"cta_bg-1-scaled-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9525;}}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:{}}}'),(299,4835,'_wp_attached_file','2023/07/drag-1.png'),(300,4835,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:20;s:6:\"height\";i:23;s:4:\"file\";s:18:\"2023/07/drag-1.png\";s:8:\"filesize\";i:282;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:{}}}'),(301,4836,'_wp_attached_file','2023/07/experience_bg-1.jpeg'),(302,4836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:446;s:6:\"height\";i:544;s:4:\"file\";s:28:\"2023/07/experience_bg-1.jpeg\";s:8:\"filesize\";i:141728;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"experience_bg-1-246x300.jpeg\";s:5:\"width\";i:246;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10294;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"experience_bg-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:4175;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"experience_bg-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17347;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"experience_bg-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14247;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"experience_bg-1-446x400.jpeg\";s:5:\"width\";i:446;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19148;}}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:{}}}'),(303,4837,'_wp_attached_file','2023/07/experience_bg_2-1.jpeg'),(304,4837,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:396;s:6:\"height\";i:246;s:4:\"file\";s:30:\"2023/07/experience_bg_2-1.jpeg\";s:8:\"filesize\";i:66843;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"experience_bg_2-1-300x186.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"experience_bg_2-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:4502;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:30:\"experience_bg_2-1-354x246.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13700;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:30:\"experience_bg_2-1-355x246.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13796;}}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:{}}}'),(305,4838,'_wp_attached_file','2023/07/experience_icon-1.svg'),(306,4838,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8629;s:5:\"width\";i:47;s:6:\"height\";i:60;}'),(308,4839,'_wp_attached_file','2023/07/experience_img-1.jpeg'),(309,4839,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:745;s:4:\"file\";s:29:\"2023/07/experience_img-1.jpeg\";s:8:\"filesize\";i:159269;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"experience_img-1-254x300.jpeg\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13534;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"experience_img-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:6105;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:29:\"experience_img-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22892;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:29:\"experience_img-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19492;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:29:\"experience_img-1-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32912;}}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:{}}}'),(310,4840,'_wp_attached_file','2023/07/experience_img-1.png'),(311,4840,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:745;s:4:\"file\";s:28:\"2023/07/experience_img-1.png\";s:8:\"filesize\";i:264199;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"experience_img-1-254x300.png\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96135;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"experience_img-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:33672;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"experience_img-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:192081;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"experience_img-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153043;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"experience_img-1-630x400.png\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:248762;}}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:{}}}'),(312,4841,'_wp_attached_file','2023/07/experience_shape_1-1.png'),(313,4841,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:153;s:6:\"height\";i:162;s:4:\"file\";s:32:\"2023/07/experience_shape_1-1.png\";s:8:\"filesize\";i:754;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"experience_shape_1-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:5272;}}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:{}}}'),(314,4842,'_wp_attached_file','2023/07/faq_bg-1.jpeg'),(315,4842,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:785;s:4:\"file\";s:21:\"2023/07/faq_bg-1.jpeg\";s:8:\"filesize\";i:309936;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"faq_bg-1-300x123.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8937;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"faq_bg-1-1024x419.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"faq_bg-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:6070;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"faq_bg-1-768x314.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35395;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"faq_bg-1-1536x628.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98923;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"faq_bg-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24293;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"faq_bg-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20699;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"faq_bg-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41747;}}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:{}}}'),(316,4843,'_wp_attached_file','2023/07/favicon-1.png'),(317,4843,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:21:\"2023/07/favicon-1.png\";s:8:\"filesize\";i:1783;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:{}}}'),(318,4844,'_wp_attached_file','2023/07/footer_bg-1.jpeg'),(319,4844,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:592;s:4:\"file\";s:24:\"2023/07/footer_bg-1.jpeg\";s:8:\"filesize\";i:69206;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"footer_bg-1-300x93.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1715;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"footer_bg-1-1024x316.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8317;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"footer_bg-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:1495;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"footer_bg-1-768x237.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5393;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"footer_bg-1-1536x474.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15825;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"footer_bg-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4635;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"footer_bg-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3778;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"footer_bg-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7374;}}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:{}}}'),(320,4845,'_wp_attached_file','2023/07/gallery_bg-1.jpeg'),(321,4845,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1294;s:4:\"file\";s:25:\"2023/07/gallery_bg-1.jpeg\";s:8:\"filesize\";i:118252;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"gallery_bg-1-300x202.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1417;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"gallery_bg-1-1024x690.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery_bg-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:694;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"gallery_bg-1-768x518.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7194;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"gallery_bg-1-1536x1035.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1035;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26382;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"gallery_bg-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2578;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"gallery_bg-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2384;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"gallery_bg-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5583;}}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:{}}}'),(322,4846,'_wp_attached_file','2023/07/hero_highlight_shape-1.svg'),(323,4846,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:415;s:5:\"width\";i:353;s:6:\"height\";i:34;}'),(325,4847,'_wp_attached_file','2023/07/hero_slider_1-1.jpeg'),(326,4847,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:28:\"2023/07/hero_slider_1-1.jpeg\";s:8:\"filesize\";i:279110;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"hero_slider_1-1-300x141.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10026;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"hero_slider_1-1-1024x481.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60899;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"hero_slider_1-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:6597;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"hero_slider_1-1-768x360.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38541;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"hero_slider_1-1-1536x721.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117188;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28330;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22349;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_1-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41302;}}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:{}}}'),(327,4848,'_wp_attached_file','2023/07/hero_slider_2-1.jpeg'),(328,4848,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:28:\"2023/07/hero_slider_2-1.jpeg\";s:8:\"filesize\";i:314564;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"hero_slider_2-1-300x141.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11590;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"hero_slider_2-1-1024x481.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80159;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"hero_slider_2-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:7600;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"hero_slider_2-1-768x360.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49614;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"hero_slider_2-1-1536x721.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156330;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_2-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33970;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_2-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28200;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_2-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53493;}}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:{}}}'),(329,4849,'_wp_attached_file','2023/07/hero_slider_3-1.jpeg'),(330,4849,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:28:\"2023/07/hero_slider_3-1.jpeg\";s:8:\"filesize\";i:314073;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"hero_slider_3-1-300x141.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11974;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"hero_slider_3-1-1024x481.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"hero_slider_3-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:6806;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"hero_slider_3-1-768x360.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50092;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"hero_slider_3-1-1536x721.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147004;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_3-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27144;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_3-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23479;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_3-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52427;}}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:{}}}'),(331,4850,'_wp_attached_file','2023/07/hero_slider_4-1.jpeg'),(332,4850,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:28:\"2023/07/hero_slider_4-1.jpeg\";s:8:\"filesize\";i:339026;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"hero_slider_4-1-300x141.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12479;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"hero_slider_4-1-1024x481.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"hero_slider_4-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:6358;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"hero_slider_4-1-768x360.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53919;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"hero_slider_4-1-1536x721.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156311;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_4-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26413;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_4-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21564;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"hero_slider_4-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54052;}}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:{}}}'),(333,4851,'_wp_attached_file','2023/07/loading-1.gif'),(334,4851,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:21:\"2023/07/loading-1.gif\";s:8:\"filesize\";i:4178;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:{}}}'),(335,4852,'_wp_attached_file','2023/07/logo-1.svg'),(336,4852,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:6356;s:5:\"width\";i:157;s:6:\"height\";i:48;}'),(338,4853,'_wp_attached_file','2023/07/moving_text_shape-1.png'),(339,4853,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3840;s:6:\"height\";i:394;s:4:\"file\";s:31:\"2023/07/moving_text_shape-1.png\";s:8:\"filesize\";i:69319;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"moving_text_shape-1-300x31.png\";s:5:\"width\";i:300;s:6:\"height\";i:31;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4054;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"moving_text_shape-1-1024x105.png\";s:5:\"width\";i:1024;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"moving_text_shape-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:4027;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"moving_text_shape-1-768x79.png\";s:5:\"width\";i:768;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17419;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"moving_text_shape-1-1536x158.png\";s:5:\"width\";i:1536;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48429;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"moving_text_shape-1-2048x210.png\";s:5:\"width\";i:2048;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73786;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:31:\"moving_text_shape-1-354x394.png\";s:5:\"width\";i:354;s:6:\"height\";i:394;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12295;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:31:\"moving_text_shape-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13152;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:31:\"moving_text_shape-1-738x394.png\";s:5:\"width\";i:738;s:6:\"height\";i:394;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23843;}}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:{}}}'),(340,4854,'_wp_attached_file','2023/07/page_header_1-1.jpeg'),(341,4854,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:639;s:4:\"file\";s:28:\"2023/07/page_header_1-1.jpeg\";s:8:\"filesize\";i:240908;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"page_header_1-1-300x100.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10070;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"page_header_1-1-1024x341.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63663;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"page_header_1-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:7470;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"page_header_1-1-768x256.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40230;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"page_header_1-1-1536x511.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118555;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"page_header_1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35146;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"page_header_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28612;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"page_header_1-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61943;}}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:{}}}'),(342,4855,'_wp_attached_file','2023/07/portfolio_1-1.jpeg'),(343,4855,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:740;s:4:\"file\";s:26:\"2023/07/portfolio_1-1.jpeg\";s:8:\"filesize\";i:104170;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"portfolio_1-1-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17466;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"portfolio_1-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:7005;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23374;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21950;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_1-1-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32944;}}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:{}}}'),(344,4856,'_wp_attached_file','2023/07/portfolio_2-1.jpeg'),(345,4856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:740;s:4:\"file\";s:26:\"2023/07/portfolio_2-1.jpeg\";s:8:\"filesize\";i:123909;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"portfolio_2-1-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19975;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"portfolio_2-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:7364;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_2-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29117;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_2-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25711;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_2-1-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42771;}}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:{}}}'),(346,4857,'_wp_attached_file','2023/07/portfolio_3-1.jpeg'),(347,4857,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:740;s:4:\"file\";s:26:\"2023/07/portfolio_3-1.jpeg\";s:8:\"filesize\";i:132352;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"portfolio_3-1-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"portfolio_3-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:7896;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_3-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36503;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_3-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30475;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_3-1-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57174;}}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:{}}}'),(348,4858,'_wp_attached_file','2023/07/portfolio_4-1.jpeg'),(349,4858,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:740;s:4:\"file\";s:26:\"2023/07/portfolio_4-1.jpeg\";s:8:\"filesize\";i:90057;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"portfolio_4-1-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"portfolio_4-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:4672;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_4-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17449;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_4-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14039;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"portfolio_4-1-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27853;}}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:{}}}'),(350,4859,'_wp_attached_file','2023/07/post_1-1.jpeg'),(351,4859,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:519;s:4:\"file\";s:21:\"2023/07/post_1-1.jpeg\";s:8:\"filesize\";i:105473;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"post_1-1-300x249.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15957;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"post_1-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:6703;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"post_1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25961;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"post_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22559;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"post_1-1-625x400.jpeg\";s:5:\"width\";i:625;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40975;}}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:{}}}'),(352,4860,'_wp_attached_file','2023/07/post_2-1.jpeg'),(353,4860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:519;s:4:\"file\";s:21:\"2023/07/post_2-1.jpeg\";s:8:\"filesize\";i:88529;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"post_2-1-300x249.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13011;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"post_2-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:5761;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"post_2-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20079;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"post_2-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17223;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"post_2-1-625x400.jpeg\";s:5:\"width\";i:625;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29240;}}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:{}}}'),(354,4861,'_wp_attached_file','2023/07/post_3-1.jpeg'),(355,4861,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:519;s:4:\"file\";s:21:\"2023/07/post_3-1.jpeg\";s:8:\"filesize\";i:98809;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"post_3-1-300x249.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"post_3-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:6003;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"post_3-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27710;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"post_3-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21420;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"post_3-1-625x400.jpeg\";s:5:\"width\";i:625;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38951;}}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:{}}}'),(356,4862,'_wp_attached_file','2023/07/post_4-1.jpeg'),(357,4862,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:299;s:6:\"height\";i:426;s:4:\"file\";s:21:\"2023/07/post_4-1.jpeg\";s:8:\"filesize\";i:91689;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"post_4-1-211x300.jpeg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11375;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"post_4-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:5242;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"post_4-1-299x345.jpeg\";s:5:\"width\";i:299;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17721;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"post_4-1-299x400.jpeg\";s:5:\"width\";i:299;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19352;}}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:{}}}'),(358,4863,'_wp_attached_file','2023/07/post_5-1.jpeg'),(359,4863,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:299;s:6:\"height\";i:426;s:4:\"file\";s:21:\"2023/07/post_5-1.jpeg\";s:8:\"filesize\";i:51152;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"post_5-1-211x300.jpeg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12461;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"post_5-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:5923;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"post_5-1-299x345.jpeg\";s:5:\"width\";i:299;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18867;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"post_5-1-299x400.jpeg\";s:5:\"width\";i:299;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20977;}}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:{}}}'),(360,4864,'_wp_attached_file','2023/07/post_6-1.jpeg'),(361,4864,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:520;s:4:\"file\";s:21:\"2023/07/post_6-1.jpeg\";s:8:\"filesize\";i:136198;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"post_6-1-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17560;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"post_6-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:7243;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"post_6-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29820;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"post_6-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24855;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"post_6-1-624x400.jpeg\";s:5:\"width\";i:624;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45717;}}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:{}}}'),(362,4865,'_wp_attached_file','2023/07/post_7-1.jpeg'),(363,4865,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:520;s:4:\"file\";s:21:\"2023/07/post_7-1.jpeg\";s:8:\"filesize\";i:137135;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"post_7-1-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17037;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"post_7-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:7150;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"post_7-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29484;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"post_7-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24323;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"post_7-1-624x400.jpeg\";s:5:\"width\";i:624;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42271;}}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:{}}}'),(364,4866,'_wp_attached_file','2023/07/post_8-1.jpeg'),(365,4866,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:520;s:4:\"file\";s:21:\"2023/07/post_8-1.jpeg\";s:8:\"filesize\";i:140777;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"post_8-1-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16754;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"post_8-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:6762;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"post_8-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27266;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"post_8-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22790;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"post_8-1-624x400.jpeg\";s:5:\"width\";i:624;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41757;}}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:{}}}'),(366,4867,'_wp_attached_file','2023/07/post_9-1.jpeg'),(367,4867,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:509;s:4:\"file\";s:21:\"2023/07/post_9-1.jpeg\";s:8:\"filesize\";i:163937;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"post_9-1-300x119.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9369;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"post_9-1-1024x406.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"post_9-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:6402;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"post_9-1-768x304.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36266;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"post_9-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25027;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"post_9-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21483;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"post_9-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43050;}}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:{}}}'),(368,4868,'_wp_attached_file','2023/07/post_10-1.jpeg'),(369,4868,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:509;s:4:\"file\";s:22:\"2023/07/post_10-1.jpeg\";s:8:\"filesize\";i:138615;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"post_10-1-300x119.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8437;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"post_10-1-1024x406.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46006;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"post_10-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:5414;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"post_10-1-768x304.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30482;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"post_10-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18753;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"post_10-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16505;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"post_10-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33747;}}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:{}}}'),(370,4869,'_wp_attached_file','2023/07/post_11-1.jpeg'),(371,4869,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:509;s:4:\"file\";s:22:\"2023/07/post_11-1.jpeg\";s:8:\"filesize\";i:207113;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"post_11-1-300x119.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9789;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"post_11-1-1024x406.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"post_11-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:7285;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"post_11-1-768x304.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40705;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:22:\"post_11-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29377;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:22:\"post_11-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25949;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:22:\"post_11-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55039;}}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:{}}}'),(372,4870,'_wp_attached_file','2023/07/post-details-1-1.jpeg'),(373,4870,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:696;s:4:\"file\";s:29:\"2023/07/post-details-1-1.jpeg\";s:8:\"filesize\";i:220045;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"post-details-1-1-300x162.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12489;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"post-details-1-1-1024x555.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74844;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"post-details-1-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:6900;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"post-details-1-1-768x416.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48731;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:29:\"post-details-1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27901;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:29:\"post-details-1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23181;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:29:\"post-details-1-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46108;}}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:{}}}'),(374,4871,'_wp_attached_file','2023/07/project_1-1.jpeg'),(375,4871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:611;s:6:\"height\";i:685;s:4:\"file\";s:24:\"2023/07/project_1-1.jpeg\";s:8:\"filesize\";i:120630;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"project_1-1-268x300.jpeg\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15993;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"project_1-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:6747;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"project_1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23966;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"project_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21277;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"project_1-1-611x400.jpeg\";s:5:\"width\";i:611;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30262;}}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:{}}}'),(376,4872,'_wp_attached_file','2023/07/project_2-1.jpeg'),(377,4872,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:610;s:6:\"height\";i:420;s:4:\"file\";s:24:\"2023/07/project_2-1.jpeg\";s:8:\"filesize\";i:130741;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"project_2-1-300x207.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16840;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"project_2-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:7284;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"project_2-1-354x420.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30038;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"project_2-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26075;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"project_2-1-610x400.jpeg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52206;}}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:{}}}'),(378,4873,'_wp_attached_file','2023/07/project_3-1.jpeg'),(379,4873,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:610;s:6:\"height\";i:685;s:4:\"file\";s:24:\"2023/07/project_3-1.jpeg\";s:8:\"filesize\";i:132910;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"project_3-1-267x300.jpeg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13966;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"project_3-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:5807;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"project_3-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22716;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"project_3-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19830;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"project_3-1-610x400.jpeg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38840;}}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:{}}}'),(380,4874,'_wp_attached_file','2023/07/project_4-1.jpeg'),(381,4874,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:610;s:6:\"height\";i:685;s:4:\"file\";s:24:\"2023/07/project_4-1.jpeg\";s:8:\"filesize\";i:145004;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"project_4-1-267x300.jpeg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16023;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"project_4-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:6255;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"project_4-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27976;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"project_4-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22445;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"project_4-1-610x400.jpeg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44529;}}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:{}}}'),(382,4875,'_wp_attached_file','2023/07/project_5-1.jpeg'),(383,4875,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:610;s:6:\"height\";i:420;s:4:\"file\";s:24:\"2023/07/project_5-1.jpeg\";s:8:\"filesize\";i:134091;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"project_5-1-300x207.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16417;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"project_5-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:7571;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"project_5-1-354x420.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33594;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"project_5-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26560;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"project_5-1-610x400.jpeg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52654;}}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:{}}}'),(384,4876,'_wp_attached_file','2023/07/project_6-1.jpeg'),(385,4876,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:420;s:4:\"file\";s:24:\"2023/07/project_6-1.jpeg\";s:8:\"filesize\";i:115052;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"project_6-1-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"project_6-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:6426;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"project_6-1-354x420.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30078;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"project_6-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23038;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"project_6-1-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44992;}}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:{}}}'),(386,4877,'_wp_attached_file','2023/07/project_details_img-1.jpeg'),(387,4877,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1040;s:4:\"file\";s:34:\"2023/07/project_details_img-1.jpeg\";s:8:\"filesize\";i:289365;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"project_details_img-1-300x163.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12850;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"project_details_img-1-1024x555.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74106;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"project_details_img-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:6185;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"project_details_img-1-768x416.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48100;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"project_details_img-1-1536x832.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:832;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135862;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:34:\"project_details_img-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20855;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:34:\"project_details_img-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19770;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:34:\"project_details_img-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45868;}}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:{}}}'),(388,4878,'_wp_attached_file','2023/07/recent-post-1-1.jpeg'),(389,4878,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:140;s:4:\"file\";s:28:\"2023/07/recent-post-1-1.jpeg\";s:8:\"filesize\";i:35866;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:{}}}'),(390,4879,'_wp_attached_file','2023/07/recent-post-2-1.jpeg'),(391,4879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:140;s:4:\"file\";s:28:\"2023/07/recent-post-2-1.jpeg\";s:8:\"filesize\";i:35182;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:{}}}'),(392,4880,'_wp_attached_file','2023/07/recent-post-3-1.jpeg'),(393,4880,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:140;s:4:\"file\";s:28:\"2023/07/recent-post-3-1.jpeg\";s:8:\"filesize\";i:31487;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:{}}}'),(394,4881,'_wp_attached_file','2023/07/service_1-1.jpeg'),(395,4881,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:362;s:4:\"file\";s:24:\"2023/07/service_1-1.jpeg\";s:8:\"filesize\";i:88886;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"service_1-1-300x262.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14882;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"service_1-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:6392;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"service_1-1-354x362.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22206;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"service_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20168;}}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:{}}}'),(396,4882,'_wp_attached_file','2023/07/service_2-1.jpeg'),(397,4882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:362;s:4:\"file\";s:24:\"2023/07/service_2-1.jpeg\";s:8:\"filesize\";i:108517;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"service_2-1-300x262.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17452;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"service_2-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:7026;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"service_2-1-354x362.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27787;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"service_2-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24514;}}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:{}}}'),(398,4883,'_wp_attached_file','2023/07/service_3-1.jpeg'),(399,4883,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:362;s:4:\"file\";s:24:\"2023/07/service_3-1.jpeg\";s:8:\"filesize\";i:105880;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"service_3-1-300x262.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"service_3-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:6752;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"service_3-1-354x362.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27466;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"service_3-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24320;}}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:{}}}'),(400,4884,'_wp_attached_file','2023/07/service_4-1.jpeg'),(401,4884,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:362;s:4:\"file\";s:24:\"2023/07/service_4-1.jpeg\";s:8:\"filesize\";i:109197;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"service_4-1-300x262.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16499;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"service_4-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:6431;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"service_4-1-354x362.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26345;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"service_4-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22906;}}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:{}}}'),(402,4885,'_wp_attached_file','2023/07/service-details-img-1-1.jpeg'),(403,4885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1285;s:6:\"height\";i:761;s:4:\"file\";s:36:\"2023/07/service-details-img-1-1.jpeg\";s:8:\"filesize\";i:262381;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"service-details-img-1-1-300x178.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11795;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"service-details-img-1-1-1024x606.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"service-details-img-1-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:6305;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"service-details-img-1-1-768x455.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44054;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:36:\"service-details-img-1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24190;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:36:\"service-details-img-1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20261;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:36:\"service-details-img-1-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37793;}}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:{}}}'),(404,4886,'_wp_attached_file','2023/07/service-details-img-2-1.jpeg'),(405,4886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:624;s:4:\"file\";s:36:\"2023/07/service-details-img-2-1.jpeg\";s:8:\"filesize\";i:156199;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"service-details-img-2-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:21611;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"service-details-img-2-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:7228;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:36:\"service-details-img-2-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32840;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:36:\"service-details-img-2-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27594;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:36:\"service-details-img-2-1-625x400.jpeg\";s:5:\"width\";i:625;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45068;}}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:{}}}'),(406,4887,'_wp_attached_file','2023/07/service-list-card-1.jpeg'),(407,4887,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:416;s:6:\"height\";i:569;s:4:\"file\";s:32:\"2023/07/service-list-card-1.jpeg\";s:8:\"filesize\";i:75191;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"service-list-card-1-219x300.jpeg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5406;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"service-list-card-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:2431;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:32:\"service-list-card-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10283;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:32:\"service-list-card-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8116;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:32:\"service-list-card-1-416x400.jpeg\";s:5:\"width\";i:416;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10153;}}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:{}}}'),(408,4888,'_wp_attached_file','2023/07/services_bg-1.jpeg'),(409,4888,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1071;s:4:\"file\";s:26:\"2023/07/services_bg-1.jpeg\";s:8:\"filesize\";i:126244;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"services_bg-1-300x167.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1584;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"services_bg-1-1024x571.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12297;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"services_bg-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:959;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"services_bg-1-768x428.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7292;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"services_bg-1-1536x857.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:857;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23694;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"services_bg-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2592;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"services_bg-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2215;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"services_bg-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6453;}}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:{}}}'),(410,4889,'_wp_attached_file','2023/07/sidebar-project-1-1.jpeg'),(411,4889,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:263;s:4:\"file\";s:32:\"2023/07/sidebar-project-1-1.jpeg\";s:8:\"filesize\";i:58834;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"sidebar-project-1-1-300x158.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"sidebar-project-1-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:4145;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:32:\"sidebar-project-1-1-354x263.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11360;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:32:\"sidebar-project-1-1-355x263.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11329;}}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:{}}}'),(412,4890,'_wp_attached_file','2023/07/staps_bg-1.jpeg'),(413,4890,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1145;s:4:\"file\";s:23:\"2023/07/staps_bg-1.jpeg\";s:8:\"filesize\";i:42665;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"staps_bg-1-300x179.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1319;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"staps_bg-1-1024x611.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:611;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4778;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"staps_bg-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:953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"staps_bg-1-768x458.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:458;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3276;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"staps_bg-1-1536x916.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:916;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8675;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:23:\"staps_bg-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1830;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:23:\"staps_bg-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1715;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:23:\"staps_bg-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2979;}}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:{}}}'),(414,4891,'_wp_attached_file','2023/07/step_1-1.jpeg'),(415,4891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:21:\"2023/07/step_1-1.jpeg\";s:8:\"filesize\";i:56577;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"step_1-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:13632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"step_1-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:5365;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"step_1-1-350x345.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18133;}}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:{}}}'),(416,4892,'_wp_attached_file','2023/07/step_2-1.jpeg'),(417,4892,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:21:\"2023/07/step_2-1.jpeg\";s:8:\"filesize\";i:68217;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"step_2-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:16161;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"step_2-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:6122;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"step_2-1-350x345.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21611;}}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:{}}}'),(418,4893,'_wp_attached_file','2023/07/step_3-1.jpeg'),(419,4893,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:21:\"2023/07/step_3-1.jpeg\";s:8:\"filesize\";i:56577;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"step_3-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:13632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"step_3-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:5365;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"step_3-1-350x345.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18133;}}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:{}}}'),(420,4894,'_wp_attached_file','2023/07/team_member_1-1.jpeg'),(421,4894,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:808;s:4:\"file\";s:28:\"2023/07/team_member_1-1.jpeg\";s:8:\"filesize\";i:116689;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"team_member_1-1-234x300.jpeg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9897;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"team_member_1-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:4449;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19261;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15747;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_1-1-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29901;}}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:{}}}'),(422,4895,'_wp_attached_file','2023/07/team_member_2-1.jpeg'),(423,4895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:808;s:4:\"file\";s:28:\"2023/07/team_member_2-1.jpeg\";s:8:\"filesize\";i:99752;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"team_member_2-1-234x300.jpeg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"team_member_2-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:4101;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_2-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14916;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_2-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11574;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_2-1-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18885;}}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:{}}}'),(424,4896,'_wp_attached_file','2023/07/team_member_3-1.jpeg'),(425,4896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:630;s:6:\"height\";i:808;s:4:\"file\";s:28:\"2023/07/team_member_3-1.jpeg\";s:8:\"filesize\";i:108141;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"team_member_3-1-234x300.jpeg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9568;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"team_member_3-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:4333;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_3-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17414;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_3-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13443;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_3-1-630x400.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19984;}}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:{}}}'),(426,4897,'_wp_attached_file','2023/07/team_member_4-1.jpeg'),(427,4897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:738;s:6:\"height\";i:707;s:4:\"file\";s:28:\"2023/07/team_member_4-1.jpeg\";s:8:\"filesize\";i:131613;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"team_member_4-1-300x287.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9914;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"team_member_4-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:3954;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_4-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19703;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_4-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13475;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:28:\"team_member_4-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31498;}}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:{}}}'),(428,4898,'_wp_attached_file','2023/07/test_1-1.jpeg'),(429,4898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2023/07/test_1-1.jpeg\";s:8:\"filesize\";i:150593;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"test_1-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:17687;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"test_1-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:6408;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"test_1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26467;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"test_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22313;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"test_1-1-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40980;}}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:{}}}'),(430,4899,'_wp_attached_file','2023/07/test_2-1.jpeg'),(431,4899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2023/07/test_2-1.jpeg\";s:8:\"filesize\";i:159325;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"test_2-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:23790;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"test_2-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:8318;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"test_2-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36313;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"test_2-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30133;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"test_2-1-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55528;}}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:{}}}'),(432,4900,'_wp_attached_file','2023/07/testimonial_bg-1.jpeg'),(433,4900,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:663;s:4:\"file\";s:29:\"2023/07/testimonial_bg-1.jpeg\";s:8:\"filesize\";i:196319;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"testimonial_bg-1-300x104.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1544;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"testimonial_bg-1-1024x354.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10819;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"testimonial_bg-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:1358;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"testimonial_bg-1-768x265.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6986;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"testimonial_bg-1-1536x530.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20671;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:29:\"testimonial_bg-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5620;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:29:\"testimonial_bg-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4771;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:29:\"testimonial_bg-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10133;}}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:{}}}'),(434,4901,'_wp_attached_file','2023/07/testimonial_bg_1-1.jpeg'),(435,4901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:624;s:4:\"file\";s:31:\"2023/07/testimonial_bg_1-1.jpeg\";s:8:\"filesize\";i:160535;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"testimonial_bg_1-1-300x98.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1664;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"testimonial_bg_1-1-1024x333.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14010;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"testimonial_bg_1-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:1014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"testimonial_bg_1-1-768x250.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8585;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"testimonial_bg_1-1-1536x499.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26511;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:31:\"testimonial_bg_1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3436;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:31:\"testimonial_bg_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3139;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:31:\"testimonial_bg_1-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9262;}}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:{}}}'),(436,4902,'_wp_attached_file','2023/07/testimonial_thumb_1-1.png'),(437,4902,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:33:\"2023/07/testimonial_thumb_1-1.png\";s:8:\"filesize\";i:61166;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"testimonial_thumb_1-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:30787;}}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:{}}}'),(438,4903,'_wp_attached_file','2023/07/testimonial_thumb_2-1.png'),(439,4903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:226;s:6:\"height\";i:225;s:4:\"file\";s:33:\"2023/07/testimonial_thumb_2-1.png\";s:8:\"filesize\";i:56389;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"testimonial_thumb_2-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:28125;}}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:{}}}'),(440,4904,'_wp_attached_file','2023/07/testimonial_thumb_3-1.png'),(441,4904,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:226;s:6:\"height\";i:225;s:4:\"file\";s:33:\"2023/07/testimonial_thumb_3-1.png\";s:8:\"filesize\";i:89500;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"testimonial_thumb_3-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:42052;}}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:{}}}'),(442,4905,'_wp_attached_file','2023/07/video_block-1.jpeg'),(443,4905,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1037;s:4:\"file\";s:26:\"2023/07/video_block-1.jpeg\";s:8:\"filesize\";i:296057;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"video_block-1-300x162.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9165;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"video_block-1-1024x553.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50962;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"video_block-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:4583;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"video_block-1-768x415.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33636;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"video_block-1-1536x830.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91287;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"video_block-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14809;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"video_block-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14117;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"video_block-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32099;}}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:{}}}'),(444,4906,'_wp_attached_file','2023/07/video_block_shape-1.jpeg'),(445,4906,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:663;s:4:\"file\";s:32:\"2023/07/video_block_shape-1.jpeg\";s:8:\"filesize\";i:196729;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"video_block_shape-1-300x104.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1662;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"video_block_shape-1-1024x354.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11534;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"video_block_shape-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:1449;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"video_block_shape-1-768x265.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7316;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"video_block_shape-1-1536x530.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21835;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:32:\"video_block_shape-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5798;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:32:\"video_block_shape-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5013;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:32:\"video_block_shape-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10422;}}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:{}}}'),(446,4907,'_wp_attached_file','2023/07/video_block_text_shape-1.svg'),(447,4907,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:240;s:5:\"width\";i:136;s:6:\"height\";i:61;}'),(449,4908,'_wp_attached_file','2023/07/why_choose_us_left_img-1.jpeg'),(450,4908,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1237;s:6:\"height\";i:786;s:4:\"file\";s:37:\"2023/07/why_choose_us_left_img-1.jpeg\";s:8:\"filesize\";i:82303;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"why_choose_us_left_img-1-300x191.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2381;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"why_choose_us_left_img-1-1024x651.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15375;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"why_choose_us_left_img-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:869;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"why_choose_us_left_img-1-768x488.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:488;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9701;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:37:\"why_choose_us_left_img-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2907;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:37:\"why_choose_us_left_img-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2695;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:37:\"why_choose_us_left_img-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7752;}}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:{}}}'),(451,4909,'_wp_attached_file','2023/07/why_choose_us_right_img-1.jpeg'),(452,4909,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:949;s:6:\"height\";i:738;s:4:\"file\";s:38:\"2023/07/why_choose_us_right_img-1.jpeg\";s:8:\"filesize\";i:165723;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"why_choose_us_right_img-1-300x233.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13544;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"why_choose_us_right_img-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:6213;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"why_choose_us_right_img-1-768x597.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56536;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:38:\"why_choose_us_right_img-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29014;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:38:\"why_choose_us_right_img-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21927;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:38:\"why_choose_us_right_img-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42379;}}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:{}}}'),(453,4910,'_wp_attached_file','2023/07/why_chose_1-1.jpeg'),(454,4910,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:990;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2023/07/why_chose_1-1.jpeg\";s:8:\"filesize\";i:130837;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"why_chose_1-1-300x182.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7562;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"why_chose_1-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:4195;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"why_chose_1-1-768x465.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30090;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"why_chose_1-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15675;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"why_chose_1-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13690;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"why_chose_1-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26599;}}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:{}}}'),(455,4976,'_wp_attached_file','2023/07/Group-1508.svg'),(456,4976,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:10962;s:5:\"width\";i:370;s:6:\"height\";i:80;}'),(458,4987,'_wp_attached_file','2023/07/1.png'),(459,4987,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:76;s:6:\"height\";i:80;s:4:\"file\";s:13:\"2023/07/1.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:{}}}'),(461,4988,'_wp_attached_file','2023/07/2.png'),(462,4988,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:13:\"2023/07/2.png\";s:8:\"filesize\";i:2463;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:{}}}'),(464,4989,'_wp_attached_file','2023/07/3.png'),(465,4989,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:13:\"2023/07/3.png\";s:8:\"filesize\";i:2573;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:{}}}'),(467,4990,'_wp_attached_file','2023/07/4.png'),(468,4990,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:81;s:6:\"height\";i:81;s:4:\"file\";s:13:\"2023/07/4.png\";s:8:\"filesize\";i:2727;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:{}}}'),(470,5071,'_wp_attached_file','2023/07/1-1.png'),(471,5071,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2023/07/1-1.png\";s:8:\"filesize\";i:1608;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:{}}}'),(473,5072,'_wp_attached_file','2023/07/2-1.png'),(474,5072,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2023/07/2-1.png\";s:8:\"filesize\";i:1024;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:{}}}'),(476,5073,'_wp_attached_file','2023/07/3-1.png'),(477,5073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2023/07/3-1.png\";s:8:\"filesize\";i:1547;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:{}}}'),(479,5151,'_wp_attached_file','2023/07/f-1.png'),(480,5151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:74;s:4:\"file\";s:15:\"2023/07/f-1.png\";s:8:\"filesize\";i:980;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:{}}}'),(482,5152,'_wp_attached_file','2023/07/f-2.png'),(483,5152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2023/07/f-2.png\";s:8:\"filesize\";i:1518;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:{}}}'),(485,5153,'_wp_attached_file','2023/07/f-3.png'),(486,5153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2023/07/f-3.png\";s:8:\"filesize\";i:1738;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:{}}}'),(488,5154,'_wp_attached_file','2023/07/f-4.png'),(489,5154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2023/07/f-4.png\";s:8:\"filesize\";i:1125;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:{}}}'),(491,6,'_elementor_edit_mode','builder'),(492,6,'_elementor_template_type','kit'),(493,1042,'_elementor_edit_mode','builder'),(494,1042,'_elementor_template_type','section'),(495,1042,'_elementor_version','3.15.3'),(496,1042,'wpmm_postgrid_views','0'),(497,3304,'_elementor_edit_mode','builder'),(498,3304,'_elementor_template_type','kit'),(499,3304,'_wp_page_template','default'),(500,3304,'_elementor_page_settings','a:12:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"10f2563\";s:5:\"title\";s:5:\"white\";s:5:\"color\";s:7:\"#FFFFFF\";}}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:5:\"Sorex\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:4:{i:0;s:15:\"viewport_mobile\";i:1;s:15:\"viewport_tablet\";i:2;s:21:\"viewport_tablet_extra\";i:3;s:15:\"viewport_laptop\";}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:16:\"site_description\";s:44:\"Creative Multipurpose Agency WordPress Theme\";s:15:\"activeItemIndex\";i:1;}'),(501,3304,'_elementor_data','[]'),(502,3304,'_elementor_page_assets','a:0:{}'),(503,3304,'_elementor_version','3.13.2'),(504,4144,'_wp_page_template','elementor_theme'),(505,4144,'_cdp_origin','1142'),(506,4144,'_cdp_origin_site','-1'),(507,4144,'_cdp_origin_title',' Global Footer #[Counter]'),(508,4144,'_cdp_counter','2'),(509,4144,'_wp_page_template','elementor_theme'),(510,4144,'_elementor_edit_mode','builder'),(511,4144,'_elementor_template_type','wp-post'),(512,4144,'_wp_old_slug','1142'),(513,4144,'_elementor_version','3.15.3'),(514,4144,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 070 4531 9507 \",\"link\":{\"url\":\"tel:+07045319507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(515,4144,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(516,4144,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(517,4144,'ehf_target_exclude_locations','a:0:{}'),(518,4144,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(519,4144,'ehf_template_type','type_footer'),(520,4144,'wpmm_postgrid_views','33'),(521,4144,'_wp_old_slug','footer-2'),(522,4144,'inline_featured_image','0'),(524,5200,'_wp_attached_file','2023/07/cta_bg-2-scaled-1.jpeg'),(525,5200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1182;s:4:\"file\";s:30:\"2023/07/cta_bg-2-scaled-1.jpeg\";s:8:\"filesize\";i:82364;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"cta_bg-2-scaled-1-300x139.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1718;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"cta_bg-2-scaled-1-1024x473.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14443;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"cta_bg-2-scaled-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:1043;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"cta_bg-2-scaled-1-768x355.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8685;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"cta_bg-2-scaled-1-1536x709.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:709;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27795;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"cta_bg-2-scaled-1-2048x946.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:946;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42077;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:30:\"cta_bg-2-scaled-1-354x455.jpeg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3213;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:30:\"cta_bg-2-scaled-1-355x345.jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3033;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:30:\"cta_bg-2-scaled-1-738x400.jpeg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9525;}}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:{}}}'),(527,5437,'_wp_attached_file','2023/07/t-feature1.png'),(528,5437,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:22:\"2023/07/t-feature1.png\";s:8:\"filesize\";i:3325;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:{}}}'),(530,5438,'_wp_attached_file','2023/07/t-feature2.png'),(531,5438,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:22:\"2023/07/t-feature2.png\";s:8:\"filesize\";i:2950;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:{}}}'),(533,5439,'_wp_attached_file','2023/07/t-feature3.png'),(534,5439,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:22:\"2023/07/t-feature3.png\";s:8:\"filesize\";i:1943;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:{}}}'),(536,5440,'_wp_attached_file','2023/07/t-feature4.png'),(537,5440,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:22:\"2023/07/t-feature4.png\";s:8:\"filesize\";i:1812;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:{}}}'),(539,5640,'_wp_attached_file','2023/07/1-2.png'),(540,5640,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2023/07/1-2.png\";s:8:\"filesize\";i:1608;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:{}}}'),(542,5660,'_wp_attached_file','2023/07/1-3.png'),(543,5660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2023/07/1-3.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:{}}}'),(545,5661,'_wp_attached_file','2023/07/2-2.png'),(546,5661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2023/07/2-2.png\";s:8:\"filesize\";i:2463;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:{}}}'),(548,5788,'_wp_attached_file','2023/07/p-icon1.png'),(549,5788,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:19:\"2023/07/p-icon1.png\";s:8:\"filesize\";i:65891;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"p-icon1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13034;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"p-icon1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67116;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"p-icon1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5754;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"p-icon1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44985;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"p-icon1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18346;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"p-icon1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16194;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"p-icon1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24803;}}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:{}}}'),(551,5789,'_wp_attached_file','2023/07/p-icon2.png'),(552,5789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:19:\"2023/07/p-icon2.png\";s:8:\"filesize\";i:76913;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"p-icon2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24627;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"p-icon2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107210;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"p-icon2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10732;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"p-icon2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77263;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"p-icon2-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39939;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"p-icon2-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30108;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"p-icon2-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43399;}}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:{}}}'),(554,5790,'_wp_attached_file','2023/07/p-icon3.png'),(555,5790,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:19:\"2023/07/p-icon3.png\";s:8:\"filesize\";i:87598;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"p-icon3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14405;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"p-icon3-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"p-icon3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6114;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"p-icon3-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47607;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:19:\"p-icon3-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18320;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:19:\"p-icon3-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16960;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:19:\"p-icon3-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18861;}}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:{}}}'),(557,5838,'_wp_attached_file','2023/07/icon-feature2.png'),(558,5838,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:25:\"2023/07/icon-feature2.png\";s:8:\"filesize\";i:156500;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"icon-feature2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32190;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"icon-feature2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157415;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"icon-feature2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"icon-feature2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106957;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"icon-feature2-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46951;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"icon-feature2-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39312;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"icon-feature2-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67667;}}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:{}}}'),(560,5839,'_wp_attached_file','2023/07/icon-feature1.png'),(561,5839,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:25:\"2023/07/icon-feature1.png\";s:8:\"filesize\";i:116811;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"icon-feature1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18952;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"icon-feature1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90056;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"icon-feature1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8351;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"icon-feature1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61935;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"icon-feature1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24997;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"icon-feature1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22427;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"icon-feature1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32941;}}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:{}}}'),(563,5860,'_wp_attached_file','2023/07/faq.png'),(564,5860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:15:\"2023/07/faq.png\";s:8:\"filesize\";i:2515;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:{}}}'),(566,6076,'_wp_attached_file','2023/08/section-shape.png'),(567,6076,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:25:\"2023/08/section-shape.png\";s:8:\"filesize\";i:72652;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"section-shape-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9958;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"section-shape-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44017;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"section-shape-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4374;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"section-shape-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31138;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"section-shape-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15069;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"section-shape-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12078;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"section-shape-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22039;}}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:{}}}'),(569,6334,'_wp_attached_file','2023/08/section-shape2.png'),(570,6334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2023/08/section-shape2.png\";s:8:\"filesize\";i:72893;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"section-shape2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10044;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"section-shape2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44877;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"section-shape2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4330;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"section-shape2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31817;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"section-shape2-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14281;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"section-shape2-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12243;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"section-shape2-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20247;}}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:{}}}'),(572,87,'_menu_item_type','post_type'),(573,87,'_menu_item_menu_item_parent','756'),(574,87,'_menu_item_object_id','32'),(575,87,'_menu_item_object','page'),(576,87,'_menu_item_target',''),(577,87,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(578,87,'_menu_item_xfn',''),(579,87,'_menu_item_url',''),(580,87,'wpmm_layout','a:1:{i:0;s:0:\"\";}'),(581,87,'_wp_old_date','2023-03-16'),(582,87,'_wp_old_date','2023-05-22'),(583,87,'_wp_old_date','2023-03-17'),(584,87,'_wp_old_date','2023-03-28'),(585,87,'_wp_old_date','2023-03-31'),(586,87,'_wp_old_date','2023-04-04'),(587,87,'_wp_old_date','2023-05-02'),(588,87,'_wp_old_date','2023-05-21'),(589,87,'_wp_old_date','2023-05-07'),(590,87,'_wp_old_date','2023-05-18'),(591,87,'_wp_old_date','2023-05-23'),(592,87,'_wp_old_date','2023-07-24'),(593,87,'_wp_old_date','2023-07-28'),(594,87,'_wp_old_date','2023-07-29'),(595,87,'_wp_old_date','2023-07-31'),(596,87,'_wp_old_date','2023-08-01'),(598,756,'wpmm_layout','a:2:{i:0;s:0:\"\";s:6:\"layout\";a:1:{i:0;a:1:{s:3:\"row\";a:1:{i:0;a:1:{s:5:\"items\";a:4:{i:0;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:87;s:5:\"title\";s:10:\"Service V1\";s:3:\"url\";s:47:\"https://ordainit.com/wp-theme/sorex/service-01/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:1;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:88;s:5:\"title\";s:10:\"Service V2\";s:3:\"url\";s:47:\"https://ordainit.com/wp-theme/sorex/service-02/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:2;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:783;s:5:\"title\";s:10:\"Service V3\";s:3:\"url\";s:47:\"https://ordainit.com/wp-theme/sorex/service-03/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:3;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:3014;s:5:\"title\";s:15:\"Service Details\";s:3:\"url\";s:52:\"https://ordainit.com/wp-theme/sorex/service-details/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}}}}}}}'),(599,756,'_menu_item_type','custom'),(600,756,'_menu_item_menu_item_parent','0'),(601,756,'_menu_item_object_id','756'),(602,756,'_menu_item_object','custom'),(603,756,'_menu_item_target',''),(604,756,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(605,756,'_menu_item_xfn',''),(606,756,'_menu_item_url','#'),(607,756,'_wp_old_date','2023-03-28'),(608,756,'_wp_old_date','2023-03-31'),(609,756,'_wp_old_date','2023-04-04'),(610,756,'_wp_old_date','2023-05-02'),(611,756,'_wp_old_date','2023-05-21'),(612,756,'_wp_old_date','2023-05-07'),(613,756,'_wp_old_date','2023-05-22'),(614,756,'_wp_old_date','2023-05-18'),(615,756,'_wp_old_date','2023-05-23'),(616,756,'_wp_old_date','2023-07-24'),(617,756,'_wp_old_date','2023-07-28'),(618,756,'_wp_old_date','2023-07-29'),(619,756,'_wp_old_date','2023-07-31'),(620,756,'_wp_old_date','2023-08-01'),(621,758,'_menu_item_type','post_type'),(622,758,'_menu_item_menu_item_parent','0'),(623,758,'_menu_item_object_id','30'),(624,758,'_menu_item_object','page'),(625,758,'_menu_item_target',''),(626,758,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(627,758,'_menu_item_xfn',''),(628,758,'_menu_item_url',''),(629,758,'_wp_old_date','2023-03-28'),(630,758,'_wp_old_date','2023-03-31'),(631,758,'_wp_old_date','2023-04-04'),(632,758,'_wp_old_date','2023-05-02'),(633,758,'_wp_old_date','2023-05-22'),(634,758,'_wp_old_date','2023-05-21'),(635,758,'_wp_old_date','2023-05-07'),(636,758,'_wp_old_date','2023-05-18'),(637,758,'_wp_old_date','2023-05-23'),(638,758,'_wp_old_date','2023-07-24'),(639,758,'_wp_old_date','2023-07-28'),(640,758,'_wp_old_date','2023-07-29'),(641,758,'_wp_old_date','2023-07-31'),(642,758,'_wp_old_date','2023-08-01'),(644,760,'wpmm_layout','a:5:{i:0;s:0:\"\";s:6:\"layout\";a:1:{i:1;a:1:{s:3:\"row\";a:3:{i:0;a:2:{s:3:\"col\";s:1:\"4\";s:5:\"items\";a:7:{i:0;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:78;s:5:\"title\";s:3:\"Job\";s:3:\"url\";s:40:\"https://ordainit.com/wp-theme/sorex/job/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:1;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:92;s:5:\"title\";s:11:\"Testimonial\";s:3:\"url\";s:48:\"https://ordainit.com/wp-theme/sorex/testimonial/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:2;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:770;s:5:\"title\";s:3:\"Faq\";s:3:\"url\";s:40:\"https://ordainit.com/wp-theme/sorex/faq/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:3;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:769;s:5:\"title\";s:5:\"Price\";s:3:\"url\";s:42:\"https://ordainit.com/wp-theme/sorex/price/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:4;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:771;s:5:\"title\";s:5:\"About\";s:3:\"url\";s:1:\"#\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:5;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:782;s:5:\"title\";s:3:\"404\";s:3:\"url\";s:40:\"https://ordainit.com/wp-theme/sorex/4043\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:6;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:762;s:5:\"title\";s:4:\"Blog\";s:3:\"url\";s:1:\"#\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}}}i:1;a:2:{s:3:\"col\";s:1:\"4\";s:5:\"items\";a:0:{}}i:2;a:1:{s:3:\"col\";s:1:\"4\";}}}}s:9:\"menu_type\";s:14:\"wpmm_mega_menu\";s:15:\"menu_strees_row\";s:19:\"wpmm-strees-default\";s:7:\"options\";a:1:{s:16:\"strees_row_width\";s:1:\"0\";}}'),(645,760,'_menu_item_type','custom'),(646,760,'_menu_item_menu_item_parent','0'),(647,760,'_menu_item_object_id','760'),(648,760,'_menu_item_object','custom'),(649,760,'_menu_item_target',''),(650,760,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(651,760,'_menu_item_xfn',''),(652,760,'_menu_item_url','#'),(653,760,'_wp_old_date','2023-03-31'),(654,760,'_wp_old_date','2023-04-04'),(655,760,'_wp_old_date','2023-05-02'),(656,760,'_wp_old_date','2023-05-22'),(657,760,'_wp_old_date','2023-05-21'),(658,760,'_wp_old_date','2023-05-07'),(659,760,'_wp_old_date','2023-05-18'),(660,760,'_wp_old_date','2023-05-23'),(661,760,'_wp_old_date','2023-07-24'),(662,760,'_wp_old_date','2023-07-28'),(663,760,'_wp_old_date','2023-07-29'),(664,760,'_wp_old_date','2023-07-31'),(665,760,'_wp_old_date','2023-08-01'),(689,762,'_menu_item_type','custom'),(690,762,'_menu_item_menu_item_parent','0'),(691,762,'_menu_item_object_id','762'),(692,762,'_menu_item_object','custom'),(693,762,'_menu_item_target',''),(694,762,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(695,762,'_menu_item_xfn',''),(696,762,'_menu_item_url','#'),(697,762,'wpmm_layout','a:2:{i:0;s:0:\"\";s:6:\"layout\";a:1:{i:0;a:1:{s:3:\"row\";a:1:{i:0;a:1:{s:5:\"items\";a:3:{i:0;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:763;s:5:\"title\";s:9:\"Blog Grid\";s:3:\"url\";s:41:\"https://ordainit.com/wp-theme/sorex/blog/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:1;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:766;s:5:\"title\";s:9:\"Blog List\";s:3:\"url\";s:46:\"https://ordainit.com/wp-theme/sorex/blog-list/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:2;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:767;s:5:\"title\";s:12:\"Blog Details\";s:3:\"url\";s:73:\"https://ordainit.com/wp-theme/sorex/2023/03/24/the-history-of-web-design/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}}}}}}}'),(698,762,'_wp_old_date','2023-03-31'),(699,762,'_wp_old_date','2023-04-04'),(700,762,'_wp_old_date','2023-05-02'),(701,762,'_wp_old_date','2023-05-22'),(702,762,'_wp_old_date','2023-05-21'),(703,762,'_wp_old_date','2023-05-07'),(704,762,'_wp_old_date','2023-05-18'),(705,762,'_wp_old_date','2023-05-23'),(706,762,'_wp_old_date','2023-07-24'),(707,762,'_wp_old_date','2023-07-28'),(708,762,'_wp_old_date','2023-07-29'),(709,762,'_wp_old_date','2023-07-31'),(710,762,'_wp_old_date','2023-08-01'),(711,763,'_menu_item_type','post_type'),(712,763,'_menu_item_menu_item_parent','762'),(713,763,'_menu_item_object_id','64'),(714,763,'_menu_item_object','page'),(715,763,'_menu_item_target',''),(716,763,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(717,763,'_menu_item_xfn',''),(718,763,'_menu_item_url',''),(719,763,'_wp_old_date','2023-03-31'),(720,763,'_wp_old_date','2023-04-04'),(721,763,'_wp_old_date','2023-05-02'),(722,763,'_wp_old_date','2023-05-22'),(723,763,'_wp_old_date','2023-05-21'),(724,763,'_wp_old_date','2023-05-07'),(725,763,'_wp_old_date','2023-05-18'),(726,763,'_wp_old_date','2023-05-23'),(727,763,'_wp_old_date','2023-07-24'),(728,763,'_wp_old_date','2023-07-28'),(729,763,'_wp_old_date','2023-07-29'),(730,763,'_wp_old_date','2023-07-31'),(731,763,'_wp_old_date','2023-08-01'),(733,768,'_wp_old_date','2023-05-22'),(734,768,'_menu_item_type','custom'),(735,768,'_menu_item_menu_item_parent','0'),(736,768,'_menu_item_object_id','768'),(737,768,'_menu_item_object','custom'),(738,768,'_menu_item_target',''),(739,768,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(740,768,'_menu_item_xfn',''),(741,768,'_menu_item_url','#'),(742,768,'wpmm_layout','a:2:{i:0;s:0:\"\";s:6:\"layout\";a:1:{i:0;a:1:{s:3:\"row\";a:1:{i:0;a:1:{s:5:\"items\";a:5:{i:0;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:3045;s:5:\"title\";s:9:\"Portfolio\";s:3:\"url\";s:46:\"https://ordainit.com/wp-theme/sorex/portfolio/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:1;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:3047;s:5:\"title\";s:12:\"Portfolio V2\";s:3:\"url\";s:49:\"https://ordainit.com/wp-theme/sorex/portfolio-v2/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:2;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:3048;s:5:\"title\";s:12:\"Portfolio V3\";s:3:\"url\";s:49:\"https://ordainit.com/wp-theme/sorex/portfolio-v3/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:3;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:3046;s:5:\"title\";s:17:\"Portfolio Masonry\";s:3:\"url\";s:54:\"https://ordainit.com/wp-theme/sorex/portfolio-masonry/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:4;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:3051;s:5:\"title\";s:17:\"Portfolio Details\";s:3:\"url\";s:54:\"https://ordainit.com/wp-theme/sorex/portfolio-details/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}}}}}}}'),(743,768,'_wp_old_date','2023-03-31'),(744,768,'_wp_old_date','2023-04-04'),(745,768,'_wp_old_date','2023-05-02'),(746,768,'_wp_old_date','2023-05-21'),(747,768,'_wp_old_date','2023-05-07'),(748,768,'_wp_old_date','2023-05-18'),(749,768,'_wp_old_date','2023-05-23'),(750,768,'_wp_old_date','2023-07-24'),(751,768,'_wp_old_date','2023-07-28'),(752,768,'_wp_old_date','2023-07-29'),(753,768,'_wp_old_date','2023-07-31'),(754,768,'_wp_old_date','2023-08-01'),(799,2172,'_wp_old_date','2023-05-08'),(800,2172,'_mc4wp_settings','a:9:{s:15:\"required_fields\";s:5:\"EMAIL\";s:12:\"double_optin\";s:1:\"1\";s:15:\"update_existing\";s:1:\"0\";s:17:\"replace_interests\";s:1:\"1\";s:15:\"subscriber_tags\";s:0:\"\";s:18:\"hide_after_success\";s:1:\"0\";s:8:\"redirect\";s:0:\"\";s:3:\"css\";s:1:\"0\";s:5:\"lists\";a:0:{}}'),(801,2172,'text_subscribed','Thank you, your sign-up request was successful! Please check your email inbox to confirm.'),(802,2172,'text_invalid_email','Please provide a valid email address.'),(803,2172,'text_required_field_missing','Please fill in the required fields.'),(804,2172,'text_already_subscribed','Given email address is already subscribed, thank you!'),(805,2172,'text_error','Oops. Something went wrong. Please try again later.'),(806,2172,'text_unsubscribed','You were successfully unsubscribed.'),(807,2172,'text_not_subscribed','Given email address is not subscribed.'),(808,2172,'text_no_lists_selected','Please select at least one list.'),(809,2172,'text_updated','Thank you, your records have been updated!'),(810,2172,'_wp_old_date','2023-05-09'),(820,5622,'_menu_item_type','post_type'),(821,5622,'_menu_item_menu_item_parent','0'),(822,5622,'_menu_item_object_id','1978'),(823,5622,'_menu_item_object','page'),(824,5622,'_menu_item_target',''),(825,5622,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(826,5622,'_menu_item_xfn',''),(827,5622,'_menu_item_url',''),(922,2018,'_menu_item_xfn',''),(923,2018,'_menu_item_url',''),(924,2018,'_wp_old_date','2023-05-22'),(925,2018,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(926,2018,'_menu_item_target',''),(927,2018,'_menu_item_object','page'),(928,2018,'_menu_item_object_id','17'),(929,2018,'_menu_item_menu_item_parent','2019'),(930,2018,'_menu_item_type','post_type'),(931,2018,'_wp_old_date','2023-05-02'),(932,2018,'_wp_old_date','2023-05-21'),(933,2018,'_wp_old_date','2023-05-07'),(934,2018,'_wp_old_date','2023-05-18'),(935,2018,'_wp_old_date','2023-05-23'),(936,2018,'_wp_old_date','2023-07-24'),(937,2018,'_wp_old_date','2023-07-28'),(938,2018,'_wp_old_date','2023-07-29'),(939,2018,'_wp_old_date','2023-07-31'),(940,2018,'_wp_old_date','2023-08-01'),(942,2019,'_menu_item_object_id','2019'),(943,2019,'_menu_item_type','custom'),(944,2019,'_menu_item_menu_item_parent','0'),(945,2019,'_wp_old_date','2023-05-22'),(946,2019,'_menu_item_target',''),(947,2019,'_menu_item_object','custom'),(948,2019,'wpmm_layout','a:2:{i:0;s:0:\"\";s:6:\"layout\";a:1:{i:0;a:1:{s:3:\"row\";a:1:{i:0;a:1:{s:5:\"items\";a:5:{i:0;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:2018;s:5:\"title\";s:15:\"Creative Agency\";s:3:\"url\";s:36:\"https://ordainit.com/wp-theme/sorex/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:1;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:735;s:5:\"title\";s:18:\"Personal Portfolio\";s:3:\"url\";s:55:\"https://ordainit.com/wp-theme/sorex/personal-portfolio/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:2;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:736;s:5:\"title\";s:16:\"Startup Business\";s:3:\"url\";s:53:\"https://ordainit.com/wp-theme/sorex/startup-business/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:3;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:733;s:5:\"title\";s:14:\"Digital Agency\";s:3:\"url\";s:51:\"https://ordainit.com/wp-theme/sorex/digital-agency/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}i:4;a:6:{s:9:\"item_type\";s:9:\"menu_item\";s:2:\"ID\";i:2093;s:5:\"title\";s:17:\"IT Service Agency\";s:3:\"url\";s:54:\"https://ordainit.com/wp-theme/sorex/it-service-agency/\";s:11:\"description\";s:0:\"\";s:7:\"options\";a:0:{}}}}}}}}'),(949,2019,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(950,2019,'_menu_item_xfn',''),(951,2019,'_menu_item_url','#'),(952,2019,'_wp_old_date','2023-05-02'),(953,2019,'_wp_old_date','2023-05-21'),(954,2019,'_wp_old_date','2023-05-07'),(955,2019,'_wp_old_date','2023-05-18'),(956,2019,'_wp_old_date','2023-05-23'),(957,2019,'_wp_old_date','2023-07-24'),(958,2019,'_wp_old_date','2023-07-28'),(959,2019,'_wp_old_date','2023-07-29'),(960,2019,'_wp_old_date','2023-07-31'),(961,2019,'_wp_old_date','2023-08-01'),(962,3014,'_wp_old_date','2023-05-22'),(963,3014,'_wp_old_date','2023-05-21'),(964,3014,'_menu_item_type','post_type'),(965,3014,'_menu_item_menu_item_parent','756'),(966,3014,'_menu_item_object_id','1978'),(967,3014,'_menu_item_object','page'),(968,3014,'_menu_item_target',''),(969,3014,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(970,3014,'_menu_item_xfn',''),(971,3014,'_menu_item_url',''),(972,3014,'_wp_old_date','2023-05-18'),(973,3014,'_wp_old_date','2023-05-23'),(974,3014,'_wp_old_date','2023-07-24'),(975,3014,'_wp_old_date','2023-07-28'),(976,3014,'_wp_old_date','2023-07-29'),(977,3014,'_wp_old_date','2023-07-31'),(978,3014,'_wp_old_date','2023-08-01'),(1029,6028,'_menu_item_type','custom'),(1030,6028,'_menu_item_menu_item_parent','760'),(1031,6028,'_menu_item_object_id','6028'),(1032,6028,'_menu_item_object','custom'),(1033,6028,'_menu_item_target',''),(1034,6028,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1035,6028,'_menu_item_xfn',''),(1036,6028,'_menu_item_url','https://bizmax.laralink.com/12345'),(1037,6028,'_wp_old_date','2023-07-31'),(1038,6028,'_wp_old_date','2023-08-01'),(1084,6522,'_menu_item_type','custom'),(1085,6522,'_menu_item_menu_item_parent','760'),(1086,6522,'_menu_item_object_id','6522'),(1087,6522,'_menu_item_object','custom'),(1088,6522,'_menu_item_target',''),(1089,6522,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1090,6522,'_menu_item_xfn',''),(1091,6522,'_menu_item_url','#'),(1092,6523,'_menu_item_type','post_type'),(1093,6523,'_menu_item_menu_item_parent','760'),(1094,6523,'_menu_item_object_id','30'),(1095,6523,'_menu_item_object','page'),(1096,6523,'_menu_item_target',''),(1097,6523,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1098,6523,'_menu_item_xfn',''),(1099,6523,'_menu_item_url',''),(1110,6537,'_menu_item_type','post_type'),(1111,6537,'_menu_item_menu_item_parent','6538'),(1112,6537,'_menu_item_object_id','6535'),(1113,6537,'_menu_item_object','page'),(1114,6537,'_menu_item_target',''),(1115,6537,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1116,6537,'_menu_item_xfn',''),(1117,6537,'_menu_item_url',''),(1119,6538,'_menu_item_type','custom'),(1120,6538,'_menu_item_menu_item_parent','0'),(1121,6538,'_menu_item_object_id','6538'),(1122,6538,'_menu_item_object','custom'),(1123,6538,'_menu_item_target',''),(1124,6538,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1125,6538,'_menu_item_xfn',''),(1126,6538,'_menu_item_url','#'),(1127,17,'header_meta','a:8:{s:16:\"page_custom_logo\";s:0:\"\";s:18:\"enable_page_topbar\";b:1;s:11:\"page_header\";s:7:\"default\";s:11:\"page_footer\";s:7:\"default\";s:16:\"newsletter_title\";s:21:\"Newsletter Subscribe \";s:15:\"newsletter_text\";s:52:\"Subscribe Our Newsletter For Get More News And Offer\";s:15:\"footer_bg_image\";s:0:\"\";s:17:\"footer_newsletter\";b:0;}'),(1128,17,'buconz_page_options','a:4:{s:13:\"pagebc_styles\";s:7:\"default\";s:9:\"banner_bg\";s:0:\"\";s:12:\"custom_title\";s:0:\"\";s:17:\"enable_breadcrumb\";b:0;}'),(1129,17,'sorex_page_options','a:6:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"0\";s:11:\"page_header\";s:6:\"style2\";s:17:\"enable_footer_cta\";s:1:\"1\";s:11:\"page_footer\";s:7:\"default\";s:15:\"footer_bg_image\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(1130,17,'_elementor_edit_mode','builder'),(1131,17,'_elementor_template_type','wp-page'),(1132,17,'_elementor_version','3.15.3'),(1133,17,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\",\"post_query_offset\":1},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1134,17,'_wp_page_template','default'),(1135,17,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1136,17,'sorex_breadcrumb_options','a:6:{s:17:\"enable_breadcrumb\";s:1:\"0\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:13:\"bc_page_thumb\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"bc_background_text\";s:0:\"\";}'),(1137,17,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:6:\"style2\";}'),(1138,17,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"0\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(1140,30,'header_meta','a:8:{s:16:\"page_custom_logo\";s:0:\"\";s:18:\"enable_page_topbar\";b:1;s:11:\"page_header\";s:7:\"default\";s:11:\"page_footer\";s:7:\"default\";s:17:\"footer_newsletter\";b:1;s:16:\"newsletter_title\";s:21:\"Newsletter Subscribe \";s:15:\"newsletter_text\";s:52:\"Subscribe Our Newsletter For Get More News And Offer\";s:15:\"footer_bg_image\";s:0:\"\";}'),(1141,30,'sorex_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:0:\"\";s:11:\"page_header\";s:7:\"default\";}'),(1142,30,'_wp_page_template','default'),(1143,30,'sorex_breadcrumb_options','a:6:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:13:\"bc_page_thumb\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"bc_background_text\";s:5:\"Sorex\";}'),(1144,30,'_elementor_edit_mode','builder'),(1145,30,'_elementor_template_type','wp-page'),(1146,30,'_elementor_version','3.15.3'),(1147,30,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore Experience Centre<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Singapore Office<br \\/><\\/span>33 Ubi Ave 3<br \\/>#05-70 Vertex<br \\/>Singapore 408868<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Hong Kong<br \\/><\\/span>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<span style=\\\"font-weight: bolder; color: #555555;\\\"><br \\/><\\/span><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Level 18, Unit 15, Menara K1, No. 1<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Lorong 3\\/137C, Off Jalan Kelang Lama,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58000, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br \\/><\\/span>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br \\/><\\/span><\\/b>3F.-13, No. 79,<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p><p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-size: 11pt; line-height: 107%; font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1148,30,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(1150,32,'header_meta','a:8:{s:16:\"page_custom_logo\";s:0:\"\";s:18:\"enable_page_topbar\";b:1;s:11:\"page_header\";s:7:\"default\";s:11:\"page_footer\";s:7:\"default\";s:17:\"footer_newsletter\";b:1;s:16:\"newsletter_title\";s:21:\"Newsletter Subscribe \";s:15:\"newsletter_text\";s:52:\"Subscribe Our Newsletter For Get More News And Offer\";s:15:\"footer_bg_image\";s:0:\"\";}'),(1151,32,'sorex_page_options','a:6:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:0:\"\";s:11:\"page_header\";s:7:\"default\";s:17:\"enable_footer_cta\";s:1:\"1\";s:11:\"page_footer\";s:7:\"default\";s:15:\"footer_bg_image\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(1152,32,'_wp_page_template','default'),(1153,32,'sorex_breadcrumb_options','a:6:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:13:\"bc_page_thumb\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"bc_background_text\";s:5:\"Sorex\";}'),(1154,32,'_elementor_edit_mode','builder'),(1155,32,'_elementor_template_type','wp-page'),(1156,32,'_elementor_version','3.15.3'),(1157,32,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/pss.jpg\",\"id\":8084,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/public-safety.png\",\"id\":8083,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(1158,32,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1202,64,'header_meta','a:8:{s:16:\"page_custom_logo\";s:0:\"\";s:18:\"enable_page_topbar\";b:1;s:11:\"page_header\";s:7:\"default\";s:11:\"page_footer\";s:7:\"default\";s:17:\"footer_newsletter\";b:1;s:16:\"newsletter_title\";s:21:\"Newsletter Subscribe \";s:15:\"newsletter_text\";s:52:\"Subscribe Our Newsletter For Get More News And Offer\";s:15:\"footer_bg_image\";s:0:\"\";}'),(1203,64,'sorex_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:0:\"\";s:11:\"page_header\";s:7:\"default\";}'),(1204,64,'_elementor_edit_mode','builder'),(1205,64,'_elementor_template_type','wp-page'),(1206,64,'_elementor_version','3.15.0'),(1207,64,'_wp_page_template','default'),(1208,64,'_elementor_data','[{\"id\":\"87b1a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"css_classes\":\"sorex-section-space\"},\"elements\":[{\"id\":\"4ff1f26\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07c899d\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"5\",\"blog_column\":\"6\",\"enable_pagination\":\"1\",\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\",\"blog_column_tab\":\"12\",\"blog_column_medium\":\"12\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":false},{\"id\":\"84ebeca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c5881f\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"bizmax-blog-sidebar\",\"_css_classes\":\"sidebar-main \"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":false}],\"isInner\":false}]'),(1209,64,'_elementor_page_assets','a:0:{}'),(1210,64,'sorex_breadcrumb_options','a:6:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:13:\"bc_page_thumb\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"bc_background_text\";s:5:\"Sorex\";}'),(1233,1978,'_wp_page_template','default'),(1234,1978,'sorex_page_options','a:5:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"0\";s:11:\"page_header\";s:7:\"default\";s:11:\"page_footer\";s:7:\"default\";s:15:\"footer_bg_image\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(1235,1978,'sorex_breadcrumb_options','a:6:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:13:\"bc_page_thumb\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"bc_background_text\";s:0:\"\";}'),(1236,1978,'_elementor_edit_mode','builder'),(1237,1978,'_elementor_template_type','wp-page'),(1238,1978,'_elementor_version','3.15.3'),(1239,1978,'_wp_page_template','default'),(1240,1978,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1241,1978,'_elementor_page_assets','a:0:{}'),(1242,1978,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(1243,1978,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:5:\"Cloud\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(1291,6535,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(1292,6535,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(1293,6535,'_elementor_template_type','wp-page'),(1294,6535,'_elementor_version','3.15.3'),(1295,6535,'_elementor_edit_mode','builder'),(1296,6535,'_wp_page_template','default'),(1297,6535,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p><span style=\\\"font-weight: 400;\\\">We look forward to hearing from you and collaborating for a secured, high technology, AI-driven solution to address your business needs.<\\/span><\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_desc\":\"Have Any Question?\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1298,6535,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(1300,6600,'_menu_item_type','post_type'),(1301,6600,'_menu_item_menu_item_parent','0'),(1302,6600,'_menu_item_object_id','30'),(1303,6600,'_menu_item_object','page'),(1304,6600,'_menu_item_target',''),(1305,6600,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1306,6600,'_menu_item_xfn',''),(1307,6600,'_menu_item_url',''),(1556,4664,'_wxr_import_term','a:3:{s:8:\"taxonomy\";s:8:\"wp_theme\";s:4:\"slug\";s:17:\"twentytwentythree\";s:4:\"name\";s:17:\"twentytwentythree\";}'),(1698,6099,'_form','<div class=\"bizmax-form\">\n<div class=\"row\">\n    <div class=\"col-12\">\n        <div class=\"cs_mb_15 \">\n            [text* your-name placeholder \"Your Name\"]\n        </div>\n    </div>\n    <div class=\"col-12\">\n        <div class=\"cs_mb_15 \">\n            [email* your-email placeholder \"Your Email\"]\n        </div>\n    </div>\n    <div class=\"col-12\">\n        <div class=\"cs_mb_15 \">\n            [textarea* your-message placeholder \"Message here ...\"]\n        </div>\n    </div>\n    <div class=\"col-12\">\n        <button class=\"cs_btn cs_style_1 cs_fs_14 cs_rounded_5 cs_pl_30 cs_pr_30 cs_pt_10 cs_pb_10 overflow-hidden\"><span>Submit Now</span></button>\n    </div>\n</div>\n</div>'),(1699,6099,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:24:\"[_site_title] Contact Me\";s:6:\"sender\";s:41:\"[_site_title] Contact Us <admin@esigo.co>\";s:9:\"recipient\";s:16:\"chan.sh@esigo.co\";s:4:\"body\";s:81:\"Sender Information\nName: [your-name]\nEmail: [your-email]\n\nMessage:\n[your-message]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1700,6099,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1701,6099,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:41:\"Please enter a date in YYYY-MM-DD format.\";s:14:\"date_too_early\";s:32:\"This field has a too early date.\";s:13:\"date_too_late\";s:31:\"This field has a too late date.\";s:14:\"invalid_number\";s:22:\"Please enter a number.\";s:16:\"number_too_small\";s:34:\"This field has a too small number.\";s:16:\"number_too_large\";s:34:\"This field has a too large number.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:30:\"Please enter an email address.\";s:11:\"invalid_url\";s:19:\"Please enter a URL.\";s:11:\"invalid_tel\";s:32:\"Please enter a telephone number.\";}'),(1702,6099,'_additional_settings',''),(1703,6099,'_locale','en_US'),(1795,6625,'_wp_attached_file','2023/08/log_file_2023-08-23__04-11-16.txt'),(1796,6626,'_wp_page_template','elementor_theme'),(1797,6626,'_cdp_origin','1142'),(1798,6626,'_cdp_origin_site','-1'),(1799,6626,'_cdp_origin_title',' Global Footer #[Counter]'),(1800,6626,'_cdp_counter','2'),(1801,6626,'_wp_page_template','elementor_theme'),(1802,6626,'_elementor_edit_mode','builder'),(1803,6626,'_elementor_template_type','wp-post'),(1804,6626,'_wp_old_slug','1142'),(1805,6626,'_elementor_version','3.15.3'),(1806,6626,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business Licence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-licence\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"34a48fe\",\"text\":\"Terms of Use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/terms-of-use\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1807,6626,'_elementor_page_assets','a:0:{}'),(1808,6626,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(1809,6626,'ehf_target_exclude_locations','a:0:{}'),(1810,6626,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(1811,6626,'ehf_template_type','type_footer'),(1812,6626,'wpmm_postgrid_views','33'),(1813,6626,'_wp_old_slug','footer-2'),(1814,6626,'inline_featured_image','0'),(1815,6626,'_wxr_import_user_slug','admin'),(1816,6626,'_wxr_import_has_attachment_refs','1'),(1818,17,'_edit_lock','1712092896:1'),(1823,6628,'_wp_attached_file','2023/08/Banner-1.png'),(1824,6628,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:20:\"2023/08/Banner-1.png\";s:8:\"filesize\";i:1549637;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Banner-1-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39945;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Banner-1-1024x481.png\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:421834;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Banner-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:15839;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Banner-1-768x360.png\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:238938;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"Banner-1-1536x721.png\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:916337;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:20:\"Banner-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104392;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:20:\"Banner-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85591;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:20:\"Banner-1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:249055;}}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:{}}}'),(1825,6628,'_wp_attachment_image_alt','Flash Banner 1'),(1826,6629,'_wp_attached_file','2023/08/Banner-2.png'),(1827,6629,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:20:\"2023/08/Banner-2.png\";s:8:\"filesize\";i:1455285;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Banner-2-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39533;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Banner-2-1024x481.png\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:372479;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Banner-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:13017;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Banner-2-768x360.png\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:216337;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"Banner-2-1536x721.png\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:805969;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:20:\"Banner-2-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74657;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:20:\"Banner-2-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65925;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:20:\"Banner-2-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:225570;}}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:{}}}'),(1828,6629,'_wp_attachment_image_alt','Flash Banner 2'),(1829,6630,'_wp_attached_file','2023/08/Banner-3.png'),(1830,6630,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:901;s:4:\"file\";s:20:\"2023/08/Banner-3.png\";s:8:\"filesize\";i:1743028;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Banner-3-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47753;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Banner-3-1024x481.png\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:468719;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Banner-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:26308;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Banner-3-768x360.png\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269702;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"Banner-3-1536x721.png\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1017112;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:20:\"Banner-3-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171710;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:20:\"Banner-3-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130670;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:20:\"Banner-3-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:291538;}}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:{}}}'),(1831,6630,'_wp_attachment_image_alt','Flash Banner 3'),(1943,17,'_elementor_pro_version','3.15.0'),(1945,6647,'_wp_attached_file','2023/08/ESi-Go.png'),(1946,6647,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3508;s:6:\"height\";i:1453;s:4:\"file\";s:18:\"2023/08/ESi-Go.png\";s:8:\"filesize\";i:86491;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ESi-Go-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8858;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"ESi-Go-1024x424.png\";s:5:\"width\";i:1024;s:6:\"height\";i:424;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34301;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ESi-Go-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5724;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"ESi-Go-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24335;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"ESi-Go-1536x636.png\";s:5:\"width\";i:1536;s:6:\"height\";i:636;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53820;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:19:\"ESi-Go-2048x848.png\";s:5:\"width\";i:2048;s:6:\"height\";i:848;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75865;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:18:\"ESi-Go-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14851;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:18:\"ESi-Go-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14372;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:18:\"ESi-Go-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26523;}s:21:\"elementor_custom_157x\";a:4:{s:4:\"file\";s:70:\"elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\";s:5:\"width\";i:157;s:6:\"height\";i:0;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(1948,6649,'_wp_attached_file','2023/08/icon-logo.png'),(1949,6649,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:21:\"2023/08/icon-logo.png\";s:8:\"filesize\";i:26382;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"icon-logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"icon-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6843;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"icon-logo-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20029;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"icon-logo-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18327;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"icon-logo-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21117;}}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:{}}}'),(1950,6649,'_wp_attachment_image_alt','icon-logo'),(1951,6650,'_wp_attached_file','2023/08/cropped-icon-logo.png'),(1952,6650,'_wp_attachment_context','site-icon'),(1953,6650,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:29:\"2023/08/cropped-icon-logo.png\";s:8:\"filesize\";i:21562;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"cropped-icon-logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"cropped-icon-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6843;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:29:\"cropped-icon-logo-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20029;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:29:\"cropped-icon-logo-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18327;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:29:\"cropped-icon-logo-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21117;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:29:\"cropped-icon-logo-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13791;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:29:\"cropped-icon-logo-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9412;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:29:\"cropped-icon-logo-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8659;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:27:\"cropped-icon-logo-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:983;}}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:{}}}'),(1957,8,'_wp_page_template','default'),(1958,8,'_elementor_page_settings','a:10:{s:9:\"site_name\";s:5:\"ESIGO\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}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_logo\";a:5:{s:3:\"url\";s:74:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\";s:2:\"id\";i:6649;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:9:\"icon-logo\";s:6:\"source\";s:7:\"library\";}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(1961,4144,'_edit_lock','1692937296:1'),(1983,4144,'_elementor_pro_version','3.15.0'),(1985,6626,'_edit_lock','1700209727:1'),(1986,6655,'_wp_attached_file','2023/06/footer-icon.png'),(1987,6655,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:157;s:6:\"height\";i:48;s:4:\"file\";s:23:\"2023/06/footer-icon.png\";s:8:\"filesize\";i:4138;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"footer-icon-150x48.png\";s:5:\"width\";i:150;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4139;}}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:{}}}'),(1988,6655,'_wp_attachment_image_alt','footer-icon'),(2010,6626,'_elementor_pro_version','3.15.0'),(2034,4144,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:6;s:11:\"header_size\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_weight\";i:6;s:20:\"typography_font_size\";i:4;s:28:\"text_shadow_text_shadow_type\";i:2;s:22:\"typography_font_family\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:2;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:21:\"space_between_widgets\";i:2;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:11:\"css_classes\";i:3;s:6:\"margin\";i:3;}}s:5:\"style\";a: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:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:6:\"layout\";i:2;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:16:\"background_color\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;s:6:\"margin\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:10:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;s:12:\"icon_padding\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:18:\"hover_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:1;s:10:\"link_click\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:9:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:10:\"text_color\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_line_height\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;s:30:\"icon_typography_text_transform\";i:1;s:27:\"icon_typography_font_family\";i:1;s:16:\"text_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:12:\"_css_classes\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}}'),(2083,30,'_edit_lock','1711615820:1'),(2102,30,'_elementor_pro_version','3.15.0'),(2651,6736,'_wp_attached_file','2023/08/globe2.png'),(2652,6736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1173;s:6:\"height\";i:586;s:4:\"file\";s:18:\"2023/08/globe2.png\";s:8:\"filesize\";i:76222;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"globe2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35948;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"globe2-1024x512.png\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:304558;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"globe2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21003;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"globe2-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215734;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:18:\"globe2-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117510;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:18:\"globe2-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114552;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:18:\"globe2-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224384;}}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:{}}}'),(2679,32,'_edit_lock','1712645987:1'),(2687,32,'_edit_last','1'),(2688,32,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(2689,32,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(2716,32,'_elementor_pro_version','3.15.0'),(2753,1978,'_edit_lock','1695293518:1'),(2890,1978,'_elementor_pro_version','3.15.0'),(3009,1978,'_edit_last','1'),(3423,6838,'_elementor_edit_mode','builder'),(3424,6838,'_elementor_template_type','loop-item'),(3425,6838,'_elementor_version','3.15.3'),(3426,6838,'_elementor_pro_version','3.15.0'),(3427,6838,'_elementor_data','[{\"id\":\"388d37f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"73a7798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f64d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Read More\",\"__dynamic__\":{\"bg_image\":\"[elementor-tag id=\\\"aa67520\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%7D\\\"]\",\"title\":\"[elementor-tag id=\\\"ca200b1\\\" name=\\\"post-title\\\" settings=\\\"%7B%7D\\\"]\",\"description\":\"[elementor-tag id=\\\"0d00ada\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"c883667\\\" name=\\\"post-url\\\" settings=\\\"%7B%7D\\\"]\"},\"button_hover_text_color\":\"#FFFFFF\",\"button_hover_background_color\":\"#004699\",\"button_hover_border_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),(3433,6838,'_elementor_page_assets','a:0:{}'),(3453,6838,'_edit_lock','1708939000:1'),(3455,6838,'_wp_page_template','default'),(3521,6838,'_edit_last','1'),(3781,6882,'_elementor_is_screenshot','1'),(3782,6882,'_wp_attached_file','elementor/screenshots/Elementor-post-screenshot_6869_2023-08-28-09-26-01_74f8db8a.png'),(3787,6883,'_edit_lock','1695271491:1'),(3788,6884,'_wp_attached_file','2023/08/cloud-migration-challenges-header.png'),(3789,6884,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1601;s:6:\"height\";i:687;s:4:\"file\";s:45:\"2023/08/cloud-migration-challenges-header.png\";s:8:\"filesize\";i:82776;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"cloud-migration-challenges-header-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15551;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"cloud-migration-challenges-header-1024x439.png\";s:5:\"width\";i:1024;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70510;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"cloud-migration-challenges-header-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11937;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"cloud-migration-challenges-header-768x330.png\";s:5:\"width\";i:768;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48972;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"cloud-migration-challenges-header-1536x659.png\";s:5:\"width\";i:1536;s:6:\"height\";i:659;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117281;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:45:\"cloud-migration-challenges-header-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34820;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:45:\"cloud-migration-challenges-header-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32372;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:45:\"cloud-migration-challenges-header-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60658;}}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:{}}}'),(3790,6885,'_wp_attached_file','2023/08/dreamstime_s_83083775-e1695097331620.jpg'),(3791,6885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:739;s:6:\"height\";i:277;s:4:\"file\";s:48:\"2023/08/dreamstime_s_83083775-e1695097331620.jpg\";s:8:\"filesize\";i:52419;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"dreamstime_s_83083775-e1695097331620-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8033;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"dreamstime_s_83083775-e1695097331620-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4699;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:48:\"dreamstime_s_83083775-e1695097331620-354x277.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14506;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:48:\"dreamstime_s_83083775-e1695097331620-355x277.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14536;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:33:\"dreamstime_s_83083775-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49877;}}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:{}}}'),(3792,6886,'_wp_attached_file','2023/08/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-e1695097173825.webp'),(3793,6886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:187;s:4:\"file\";s:93:\"2023/08/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-e1695097173825.webp\";s:8:\"filesize\";i:86960;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:93:\"How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-e1695097173825-300x112.webp\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:93:\"How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-e1695097173825-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6344;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:93:\"How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-e1695097173825-354x187.webp\";s:5:\"width\";i:354;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20330;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:93:\"How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-e1695097173825-355x187.webp\";s:5:\"width\";i:355;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19526;}}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:{}}}'),(3794,6887,'_wp_attached_file','2023/08/mark_iles_tra_2-e1695097275897.jpg'),(3795,6887,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:739;s:6:\"height\";i:277;s:4:\"file\";s:42:\"2023/08/mark_iles_tra_2-e1695097275897.jpg\";s:8:\"filesize\";i:36896;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"mark_iles_tra_2-e1695097275897-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5710;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"mark_iles_tra_2-e1695097275897-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4653;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:42:\"mark_iles_tra_2-e1695097275897-354x277.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12818;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:42:\"mark_iles_tra_2-e1695097275897-355x277.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12833;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:27:\"mark_iles_tra_2-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35835;}}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:{}}}'),(3798,6883,'_thumbnail_id','6885'),(3799,6883,'_edit_last','1'),(3800,6883,'bizmax_wp_blog_options','a:3:{s:21:\"enable_featured_image\";s:1:\"1\";s:21:\"featured_image_upload\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:11:\"post_layout\";s:13:\"right-sidebar\";}'),(3801,6883,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(3846,6883,'url_article','https://www.channelasia.tech/article/671033/asean-embraces-managed-services-expect-channel-m-rise/'),(3942,6883,'_wp_old_slug','as-asean-embraces-managed-services-expect-channel-ma-to-rise'),(3961,6911,'_edit_lock','1695271595:1'),(3989,6911,'_thumbnail_id','6887'),(3991,6911,'_edit_last','1'),(3992,6911,'bizmax_wp_blog_options','a:3:{s:21:\"enable_featured_image\";s:1:\"1\";s:21:\"featured_image_upload\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:11:\"post_layout\";s:13:\"right-sidebar\";}'),(3993,6911,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(3998,6917,'_edit_lock','1695196589:1'),(4001,6917,'url_article','https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/'),(4002,6917,'_edit_last','1'),(4003,6917,'bizmax_wp_blog_options','a:3:{s:21:\"enable_featured_image\";s:1:\"1\";s:21:\"featured_image_upload\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:11:\"post_layout\";s:13:\"right-sidebar\";}'),(4004,6917,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(4007,6917,'_thumbnail_id','6886'),(4008,6917,'url_article','https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/'),(4037,6917,'url_article','https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/'),(4038,6923,'_edit_lock','1695271403:1'),(4041,6923,'_thumbnail_id','6884'),(4043,6923,'_edit_last','1'),(4044,6923,'bizmax_wp_blog_options','a:3:{s:21:\"enable_featured_image\";s:1:\"1\";s:21:\"featured_image_upload\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:11:\"post_layout\";s:13:\"right-sidebar\";}'),(4045,6923,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(4137,6936,'_wp_page_template','default'),(4138,6936,'_elementor_edit_mode','builder'),(4139,6936,'_elementor_template_type','wp-page'),(4140,6936,'_elementor_version','3.15.3'),(4141,6936,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[]},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4142,6936,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4143,6936,'_elementor_pro_version','3.15.0'),(4145,6937,'_wp_page_template','default'),(4146,6937,'_elementor_edit_mode','builder'),(4147,6937,'_elementor_template_type','wp-page'),(4148,6937,'_elementor_version','3.15.3'),(4149,6937,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[]},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4150,6937,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4151,6937,'_elementor_pro_version','3.15.0'),(4153,6938,'_wp_page_template','default'),(4154,6938,'_elementor_edit_mode','builder'),(4155,6938,'_elementor_template_type','wp-page'),(4156,6938,'_elementor_version','3.15.3'),(4157,6938,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[]},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4158,6938,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4159,6938,'_elementor_pro_version','3.15.0'),(4163,6939,'_wp_page_template','default'),(4164,6939,'_elementor_edit_mode','builder'),(4165,6939,'_elementor_template_type','wp-page'),(4166,6939,'_elementor_version','3.15.3'),(4167,6939,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[]},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4168,6939,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4169,6939,'_elementor_pro_version','3.15.0'),(4171,6940,'_wp_page_template','default'),(4172,6940,'_elementor_edit_mode','builder'),(4173,6940,'_elementor_template_type','wp-page'),(4174,6940,'_elementor_version','3.15.3'),(4175,6940,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[]},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4176,6940,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4177,6940,'_elementor_pro_version','3.15.0'),(4179,6941,'_wp_page_template','default'),(4180,6941,'_elementor_edit_mode','builder'),(4181,6941,'_elementor_template_type','wp-page'),(4182,6941,'_elementor_version','3.15.3'),(4183,6941,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[]},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4184,6941,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4185,6941,'_elementor_pro_version','3.15.0'),(4198,6943,'_wp_page_template','default'),(4199,6943,'_elementor_edit_mode','builder'),(4200,6943,'_elementor_template_type','wp-page'),(4201,6943,'_elementor_version','3.15.3'),(4202,6943,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[]},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4203,6943,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4204,6943,'_elementor_pro_version','3.15.0'),(4205,6944,'_wp_page_template','default'),(4206,6944,'_elementor_edit_mode','builder'),(4207,6944,'_elementor_template_type','wp-page'),(4208,6944,'_elementor_version','3.15.3'),(4209,6944,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[]},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4210,6944,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4211,6944,'_elementor_pro_version','3.15.0'),(4212,6945,'_wp_page_template','default'),(4213,6945,'_elementor_edit_mode','builder'),(4214,6945,'_elementor_template_type','wp-page'),(4215,6945,'_elementor_version','3.15.3'),(4216,6945,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":101.644}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4217,6945,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4218,6945,'_elementor_pro_version','3.15.0'),(4230,6947,'_wp_page_template','default'),(4231,6947,'_elementor_edit_mode','builder'),(4232,6947,'_elementor_template_type','wp-page'),(4233,6947,'_elementor_version','3.15.3'),(4234,6947,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":101.644}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4235,6947,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4236,6947,'_elementor_pro_version','3.15.0'),(4237,6948,'_wp_page_template','default'),(4238,6948,'_elementor_edit_mode','builder'),(4239,6948,'_elementor_template_type','wp-page'),(4240,6948,'_elementor_version','3.15.3'),(4241,6948,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":101.644}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4242,6948,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4243,6948,'_elementor_pro_version','3.15.0'),(4244,6949,'_wp_page_template','default'),(4245,6949,'_elementor_edit_mode','builder'),(4246,6949,'_elementor_template_type','wp-page'),(4247,6949,'_elementor_version','3.15.3'),(4248,6949,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f3616c4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"01e7ae5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"ea3bb75\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b8d0de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":101.644}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"4eb9656\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"31d5890\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4630914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b3a2ed9\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"00528aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"background_background\":\"classic\",\"background_color\":\"#004699\"},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4249,6949,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4250,6949,'_elementor_pro_version','3.15.0'),(4253,6950,'_wp_page_template','default'),(4254,6950,'_elementor_edit_mode','builder'),(4255,6950,'_elementor_template_type','wp-page'),(4256,6950,'_elementor_version','3.15.3'),(4257,6950,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f3616c4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"01e7ae5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"ea3bb75\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b8d0de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":101.644}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"4eb9656\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"31d5890\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4630914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b3a2ed9\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"00528aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"background_background\":\"classic\",\"background_color\":\"#004699\"},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4258,6950,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(4259,6950,'_elementor_pro_version','3.15.0'),(4261,6951,'_wp_page_template','default'),(4262,6951,'_elementor_edit_mode','builder'),(4263,6951,'_elementor_template_type','wp-page'),(4264,6951,'_elementor_version','3.15.3'),(4265,6951,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f3616c4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"01e7ae5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"ea3bb75\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b8d0de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":101.644}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"4eb9656\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"31d5890\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4630914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b3a2ed9\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"00528aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"background_background\":\"classic\",\"background_color\":\"#004699\"},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4266,6951,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(4267,6951,'_elementor_pro_version','3.15.0'),(4269,6952,'_wp_page_template','default'),(4270,6952,'_elementor_edit_mode','builder'),(4271,6952,'_elementor_template_type','wp-page'),(4272,6952,'_elementor_version','3.15.3'),(4273,6952,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4274,6952,'_elementor_page_assets','a:1:{s:6:\"styles\";a:11:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";}}'),(4275,6952,'_elementor_pro_version','3.15.0'),(4279,6953,'_wp_page_template','default'),(4280,6953,'_elementor_edit_mode','builder'),(4281,6953,'_elementor_template_type','wp-page'),(4282,6953,'_elementor_version','3.15.3'),(4283,6953,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4284,6953,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4285,6953,'_elementor_pro_version','3.15.0'),(4287,6954,'_wp_page_template','default'),(4288,6954,'_elementor_edit_mode','builder'),(4289,6954,'_elementor_template_type','wp-page'),(4290,6954,'_elementor_version','3.15.3'),(4291,6954,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4292,6954,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4293,6954,'_elementor_pro_version','3.15.0'),(4295,6955,'_wp_page_template','default'),(4296,6955,'_elementor_edit_mode','builder'),(4297,6955,'_elementor_template_type','wp-page'),(4298,6955,'_elementor_version','3.15.3'),(4299,6955,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4300,6955,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4301,6955,'_elementor_pro_version','3.15.0'),(4305,6957,'_wp_attached_file','2023/08/ESi-Go-1024x424-putih.png'),(4306,6957,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:424;s:4:\"file\";s:33:\"2023/08/ESi-Go-1024x424-putih.png\";s:8:\"filesize\";i:35934;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"ESi-Go-1024x424-putih-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6947;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"ESi-Go-1024x424-putih-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4640;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"ESi-Go-1024x424-putih-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21516;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:33:\"ESi-Go-1024x424-putih-354x424.png\";s:5:\"width\";i:354;s:6:\"height\";i:424;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12788;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:33:\"ESi-Go-1024x424-putih-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13011;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:33:\"ESi-Go-1024x424-putih-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23574;}s:21:\"elementor_custom_100x\";a:4:{s:4:\"file\";s:85:\"elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbghbvg5a7czmdkd2w8i1rf37j9x92gezu2e2.png\";s:5:\"width\";i:100;s:6:\"height\";i:0;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"elementor_custom_100x100\";a:4:{s:4:\"file\";s:85:\"elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbghbw0lvjnbp20w6q8vw7md3igiqkafyd148.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"elementor_custom_157x\";a:4:{s:4:\"file\";s:85:\"elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\";s:5:\"width\";i:157;s:6:\"height\";i:0;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(4308,6535,'_edit_lock','1699442767:1'),(4309,6958,'_elementor_template_type','wp-page'),(4310,6958,'_elementor_version','3.15.1'),(4311,6958,'_elementor_edit_mode','builder'),(4312,6958,'_wp_page_template','default'),(4313,6958,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"tel:070 4531 9507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"bizmax@laralink.com\",\"bizmax_list_link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"Yewtree Cottage, Kings Pyon, HR4 8PZ\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4314,6958,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(4316,6959,'_elementor_template_type','wp-page'),(4317,6959,'_elementor_version','3.15.1'),(4318,6959,'_elementor_edit_mode','builder'),(4319,6959,'_wp_page_template','default'),(4320,6959,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"tel:070 4531 9507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"bizmax@laralink.com\",\"bizmax_list_link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"Yewtree Cottage, Kings Pyon, HR4 8PZ\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4321,6959,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(4323,6960,'_elementor_template_type','wp-page'),(4324,6960,'_elementor_version','3.15.1'),(4325,6960,'_elementor_edit_mode','builder'),(4326,6960,'_wp_page_template','default'),(4327,6960,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"tel:070 4531 9507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"bizmax@laralink.com\",\"bizmax_list_link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"Yewtree Cottage, Kings Pyon, HR4 8PZ\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4328,6960,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(4330,6535,'_elementor_pro_version','3.15.0'),(4332,6535,'_edit_last','1'),(4333,6961,'_elementor_template_type','wp-page'),(4334,6961,'_elementor_version','3.15.3'),(4335,6961,'_elementor_edit_mode','builder'),(4336,6961,'_wp_page_template','default'),(4337,6961,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"tel:070 4531 9507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"bizmax@laralink.com\",\"bizmax_list_link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"Yewtree Cottage, Kings Pyon, HR4 8PZ\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4338,6961,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(4339,6961,'_elementor_pro_version','3.15.0'),(4340,6961,'_elementor_controls_usage','a:6:{s:23:\"bizmax-list-step-widget\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:15:\"animation_delay\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:2;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;}}}}s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:6:{s:19:\"bizmax_stitle_style\";i:1;s:20:\"bizmax_section_label\";i:1;s:20:\"bizmax_section_title\";i:1;s:19:\"bizmax_section_desc\";i:1;s:19:\"bizmax_stitle_color\";i:1;s:18:\"bizmax_stext_color\";i:1;}}}}s:19:\"bizmax-contact-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:2:{s:7:\"c_lists\";i:1;s:19:\"bizmax_stitle_color\";i:1;}}}}s:21:\"bizmax-contact-modern\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:7:\"form_id\";i:1;s:18:\"bizmax_contact_img\";i:1;s:21:\"bizmax_contact_bg_img\";i:1;s:20:\"bizmax_contact_title\";i:1;}}}}}'),(4342,6962,'_elementor_edit_mode','builder'),(4343,6962,'_elementor_template_type','wp-page'),(4344,6962,'_elementor_version','3.15.3');
INSERT INTO `wpsl_postmeta` VALUES (4345,6962,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"tel:070 4531 9507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"bizmax@laralink.com\",\"bizmax_list_link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"Yewtree Cottage, Kings Pyon, HR4 8PZ\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4346,6962,'_wp_page_template','default'),(4347,6962,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4348,6962,'_elementor_pro_version','3.15.0'),(4350,6963,'_elementor_edit_mode','builder'),(4351,6963,'_elementor_template_type','wp-page'),(4352,6963,'_elementor_version','3.15.3'),(4353,6963,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"tel:070 4531 9507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"bizmax@laralink.com\",\"bizmax_list_link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"Yewtree Cottage, Kings Pyon, HR4 8PZ\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4354,6963,'_wp_page_template','default'),(4355,6963,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4356,6963,'_elementor_pro_version','3.15.0'),(4358,6964,'_elementor_edit_mode','builder'),(4359,6964,'_elementor_template_type','wp-page'),(4360,6964,'_elementor_version','3.15.3'),(4361,6964,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4362,6964,'_wp_page_template','default'),(4363,6964,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4364,6964,'_elementor_pro_version','3.15.0'),(4368,1042,'_elementor_pro_version','3.15.0'),(4369,1042,'_edit_lock','1693560551:1'),(4370,8,'_edit_lock','1712092694:1'),(4371,6965,'_wp_page_template','elementor_theme'),(4372,6965,'_elementor_edit_mode','builder'),(4373,6965,'_elementor_template_type','wp-post'),(4374,6965,'_elementor_version','3.15.3'),(4375,6965,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 070 4531 9507 \",\"link\":{\"url\":\"tel:+07045319507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4376,6965,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4377,6965,'_elementor_pro_version','3.15.0'),(4379,6966,'_wp_page_template','elementor_theme'),(4380,6966,'_elementor_edit_mode','builder'),(4381,6966,'_elementor_template_type','wp-post'),(4382,6966,'_elementor_version','3.15.3'),(4383,6966,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 070 4531 9507 \",\"link\":{\"url\":\"tel:+07045319507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4384,6966,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4385,6966,'_elementor_pro_version','3.15.0'),(4387,6967,'_wp_page_template','elementor_theme'),(4388,6967,'_elementor_edit_mode','builder'),(4389,6967,'_elementor_template_type','wp-post'),(4390,6967,'_elementor_version','3.15.3'),(4391,6967,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 070 4531 9507 \",\"link\":{\"url\":\"tel:+07045319507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4392,6967,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4393,6967,'_elementor_pro_version','3.15.0'),(4396,6968,'_wp_page_template','elementor_theme'),(4397,6968,'_elementor_edit_mode','builder'),(4398,6968,'_elementor_template_type','wp-post'),(4399,6968,'_elementor_version','3.15.3'),(4400,6968,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 070 4531 9507 \",\"link\":{\"url\":\"tel:+07045319507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4401,6968,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4402,6968,'_elementor_pro_version','3.15.0'),(4403,6969,'_wp_page_template','elementor_theme'),(4404,6969,'_elementor_edit_mode','builder'),(4405,6969,'_elementor_template_type','wp-post'),(4406,6969,'_elementor_version','3.15.3'),(4407,6969,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 070 4531 9507 \",\"link\":{\"url\":\"tel:+07045319507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4408,6969,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4409,6969,'_elementor_pro_version','3.15.0'),(4410,6970,'_wp_page_template','elementor_theme'),(4411,6970,'_elementor_edit_mode','builder'),(4412,6970,'_elementor_template_type','wp-post'),(4413,6970,'_elementor_version','3.15.3'),(4414,6970,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 070 4531 9507 \",\"link\":{\"url\":\"tel:+07045319507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4415,6970,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4416,6970,'_elementor_pro_version','3.15.0'),(4418,6971,'_wp_page_template','elementor_theme'),(4419,6971,'_elementor_edit_mode','builder'),(4420,6971,'_elementor_template_type','wp-post'),(4421,6971,'_elementor_version','3.15.3'),(4422,6971,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 070 4531 9507 \",\"link\":{\"url\":\"tel:+07045319507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4423,6971,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4424,6971,'_elementor_pro_version','3.15.0'),(4425,6972,'_wp_page_template','elementor_theme'),(4426,6972,'_elementor_edit_mode','builder'),(4427,6972,'_elementor_template_type','wp-post'),(4428,6972,'_elementor_version','3.15.3'),(4429,6972,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 070 4531 9507 \",\"link\":{\"url\":\"tel:+07045319507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4430,6972,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4431,6972,'_elementor_pro_version','3.15.0'),(4432,6973,'_wp_page_template','elementor_theme'),(4433,6973,'_elementor_edit_mode','builder'),(4434,6973,'_elementor_template_type','wp-post'),(4435,6973,'_elementor_version','3.15.3'),(4436,6973,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4437,6973,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4438,6973,'_elementor_pro_version','3.15.0'),(4440,6974,'_wp_page_template','elementor_theme'),(4441,6974,'_elementor_edit_mode','builder'),(4442,6974,'_elementor_template_type','wp-post'),(4443,6974,'_elementor_version','3.15.3'),(4444,6974,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4445,6974,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4446,6974,'_elementor_pro_version','3.15.0'),(4447,6975,'_wp_page_template','elementor_theme'),(4448,6975,'_elementor_edit_mode','builder'),(4449,6975,'_elementor_template_type','wp-post'),(4450,6975,'_elementor_version','3.15.3'),(4451,6975,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\"bizmax@laralink.com\",\"link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4452,6975,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4453,6975,'_elementor_pro_version','3.15.0'),(4454,6976,'_wp_page_template','elementor_theme'),(4455,6976,'_elementor_edit_mode','builder'),(4456,6976,'_elementor_template_type','wp-post'),(4457,6976,'_elementor_version','3.15.3'),(4458,6976,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4459,6976,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4460,6976,'_elementor_pro_version','3.15.0'),(4463,6977,'_wp_page_template','elementor_theme'),(4464,6977,'_elementor_edit_mode','builder'),(4465,6977,'_elementor_template_type','wp-post'),(4466,6977,'_elementor_version','3.15.3'),(4467,6977,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4468,6977,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4469,6977,'_elementor_pro_version','3.15.0'),(4471,6978,'_wp_page_template','elementor_theme'),(4472,6978,'_elementor_edit_mode','builder'),(4473,6978,'_elementor_template_type','wp-post'),(4474,6978,'_elementor_version','3.15.3'),(4475,6978,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/bizmax.laralink.com\\/\\\" data-wplink-url-error=\\\"true\\\">bizmax.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4476,6978,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4477,6978,'_elementor_pro_version','3.15.0'),(4479,6979,'_wp_page_template','elementor_theme'),(4480,6979,'_elementor_edit_mode','builder'),(4481,6979,'_elementor_template_type','wp-post'),(4482,6979,'_elementor_version','3.15.3'),(4483,6979,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4484,6979,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4485,6979,'_elementor_pro_version','3.15.0'),(4489,6980,'_elementor_template_type','wp-page'),(4490,6980,'_elementor_version','3.15.3'),(4491,6980,'_elementor_edit_mode','builder'),(4492,6980,'_wp_page_template','default'),(4493,6980,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"tel:070 4531 9507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"bizmax@laralink.com\",\"bizmax_list_link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"Yewtree Cottage, Kings Pyon, HR4 8PZ\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4494,6980,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(4495,6980,'_elementor_pro_version','3.15.0'),(4497,6981,'_elementor_template_type','wp-page'),(4498,6981,'_elementor_version','3.15.3'),(4499,6981,'_elementor_edit_mode','builder'),(4500,6981,'_wp_page_template','default'),(4501,6981,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"tel:070 4531 9507 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"bizmax@laralink.com\",\"bizmax_list_link\":{\"url\":\"mailto:bizmax@laralink.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"Yewtree Cottage, Kings Pyon, HR4 8PZ\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4502,6981,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(4503,6981,'_elementor_pro_version','3.15.0'),(4505,6982,'_elementor_template_type','wp-page'),(4506,6982,'_elementor_version','3.15.3'),(4507,6982,'_elementor_edit_mode','builder'),(4508,6982,'_wp_page_template','default'),(4509,6982,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4510,6982,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(4511,6982,'_elementor_pro_version','3.15.0'),(4514,6983,'_wp_page_template','elementor_theme'),(4515,6983,'_elementor_edit_mode','builder'),(4516,6983,'_elementor_template_type','wp-post'),(4517,6983,'_elementor_version','3.15.3'),(4518,6983,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4519,6983,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4520,6983,'_elementor_pro_version','3.15.0'),(4522,6984,'_wp_page_template','elementor_theme'),(4523,6984,'_elementor_edit_mode','builder'),(4524,6984,'_elementor_template_type','wp-post'),(4525,6984,'_elementor_version','3.15.3'),(4526,6984,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\">\\n                  <p>I\'ve been using [business name] for the past year \\nand I\'m so glad I did. Their products and services are top-notch and \\ntheir customer service is amazing. I would highly recommend them to \\nanyone<\\/p>\\n                <\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4527,6984,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4528,6984,'_elementor_pro_version','3.15.0'),(4530,6985,'_wp_page_template','elementor_theme'),(4531,6985,'_elementor_edit_mode','builder'),(4532,6985,'_elementor_template_type','wp-post'),(4533,6985,'_elementor_version','3.15.3'),(4534,6985,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4535,6985,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4536,6985,'_elementor_pro_version','3.15.0'),(4540,6986,'_wp_page_template','elementor_theme'),(4541,6986,'_elementor_edit_mode','builder'),(4542,6986,'_elementor_template_type','wp-post'),(4543,6986,'_elementor_version','3.15.3'),(4544,6986,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4545,6986,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4546,6986,'_elementor_pro_version','3.15.0'),(4548,6987,'_wp_page_template','elementor_theme'),(4549,6987,'_elementor_edit_mode','builder'),(4550,6987,'_elementor_template_type','wp-post'),(4551,6987,'_elementor_version','3.15.3'),(4552,6987,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"a0350c3\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"0e7f631\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4553,6987,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4554,6987,'_elementor_pro_version','3.15.0'),(4556,6988,'_wp_page_template','elementor_theme'),(4557,6988,'_elementor_edit_mode','builder'),(4558,6988,'_elementor_template_type','wp-post'),(4559,6988,'_elementor_version','3.15.3'),(4560,6988,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4561,6988,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4562,6988,'_elementor_pro_version','3.15.0'),(4567,6989,'_wp_page_template','elementor_theme'),(4568,6989,'_elementor_edit_mode','builder'),(4569,6989,'_elementor_template_type','wp-post'),(4570,6989,'_elementor_version','3.15.3'),(4571,6989,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4572,6989,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4573,6989,'_elementor_pro_version','3.15.0'),(4575,6990,'_wp_page_template','elementor_theme'),(4576,6990,'_elementor_edit_mode','builder'),(4577,6990,'_elementor_template_type','wp-post'),(4578,6990,'_elementor_version','3.15.3'),(4579,6990,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Portfolio\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"169ecda\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-v1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\"Support \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2f100b\"},{\"text\":\"Pricing Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/faq\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d715dbb\"},{\"text\":\" New Projects\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/price\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3de4fd8\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4580,6990,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4581,6990,'_elementor_pro_version','3.15.0'),(4583,6991,'_wp_page_template','elementor_theme'),(4584,6991,'_elementor_edit_mode','builder'),(4585,6991,'_elementor_template_type','wp-post'),(4586,6991,'_elementor_version','3.15.3'),(4587,6991,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4588,6991,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4589,6991,'_elementor_pro_version','3.15.0'),(4596,6994,'_wp_attached_file','2023/08/Temp-Slide-1.png'),(4597,6994,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2667;s:6:\"height\";i:1500;s:4:\"file\";s:24:\"2023/08/Temp-Slide-1.png\";s:8:\"filesize\";i:572729;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Temp-Slide-1-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31938;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Temp-Slide-1-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:228441;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Temp-Slide-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:20006;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Temp-Slide-1-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144688;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"Temp-Slide-1-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:431152;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:26:\"Temp-Slide-1-2048x1152.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:703564;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"Temp-Slide-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103857;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"Temp-Slide-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78985;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"Temp-Slide-1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136050;}}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:{}}}'),(4598,6995,'_wp_page_template','default'),(4599,6995,'_elementor_edit_mode','builder'),(4600,6995,'_elementor_template_type','wp-page'),(4601,6995,'_elementor_version','3.15.3'),(4602,6995,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4603,6995,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4604,6995,'_elementor_pro_version','3.15.0'),(4606,6996,'_wp_page_template','default'),(4607,6996,'_elementor_edit_mode','builder'),(4608,6996,'_elementor_template_type','wp-page'),(4609,6996,'_elementor_version','3.15.3'),(4610,6996,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#004699\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/globe2.png\",\"id\":6736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4611,6996,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4612,6996,'_elementor_pro_version','3.15.0'),(4614,6997,'_wp_page_template','default'),(4615,6997,'_elementor_edit_mode','builder'),(4616,6997,'_elementor_template_type','wp-page'),(4617,6997,'_elementor_version','3.15.3'),(4618,6997,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4619,6997,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4620,6997,'_elementor_pro_version','3.15.0'),(4624,6998,'_wp_page_template','default'),(4625,6998,'_elementor_edit_mode','builder'),(4626,6998,'_elementor_template_type','wp-page'),(4627,6998,'_elementor_version','3.15.3'),(4628,6998,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4629,6998,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4630,6998,'_elementor_pro_version','3.15.0'),(4632,6999,'_wp_page_template','default'),(4633,6999,'_elementor_edit_mode','builder'),(4634,6999,'_elementor_template_type','wp-page'),(4635,6999,'_elementor_version','3.15.3'),(4636,6999,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4637,6999,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4638,6999,'_elementor_pro_version','3.15.0'),(4640,7000,'_wp_page_template','default'),(4641,7000,'_elementor_edit_mode','builder'),(4642,7000,'_elementor_template_type','wp-page'),(4643,7000,'_elementor_version','3.15.3'),(4644,7000,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4645,7000,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4646,7000,'_elementor_pro_version','3.15.0'),(4650,7001,'_wp_page_template','default'),(4651,7001,'_elementor_edit_mode','builder'),(4652,7001,'_elementor_template_type','wp-page'),(4653,7001,'_elementor_version','3.15.3'),(4654,7001,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4655,7001,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4656,7001,'_elementor_pro_version','3.15.0'),(4658,7002,'_wp_page_template','default'),(4659,7002,'_elementor_edit_mode','builder'),(4660,7002,'_elementor_template_type','wp-page'),(4661,7002,'_elementor_version','3.15.3'),(4662,7002,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4663,7002,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4664,7002,'_elementor_pro_version','3.15.0'),(4666,7003,'_wp_page_template','default'),(4667,7003,'_elementor_edit_mode','builder'),(4668,7003,'_elementor_template_type','wp-page'),(4669,7003,'_elementor_version','3.15.3'),(4670,7003,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4671,7003,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4672,7003,'_elementor_pro_version','3.15.0'),(4676,7004,'_wp_page_template','default'),(4677,7004,'_elementor_edit_mode','builder'),(4678,7004,'_elementor_template_type','wp-page'),(4679,7004,'_elementor_version','3.15.3'),(4680,7004,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4681,7004,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4682,7004,'_elementor_pro_version','3.15.0'),(4684,7005,'_wp_page_template','default'),(4685,7005,'_elementor_edit_mode','builder'),(4686,7005,'_elementor_template_type','wp-page'),(4687,7005,'_elementor_version','3.15.3'),(4688,7005,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4689,7005,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4690,7005,'_elementor_pro_version','3.15.0'),(4692,7006,'_wp_page_template','default'),(4693,7006,'_elementor_edit_mode','builder'),(4694,7006,'_elementor_template_type','wp-page'),(4695,7006,'_elementor_version','3.15.3'),(4696,7006,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4697,7006,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4698,7006,'_elementor_pro_version','3.15.0'),(4702,7007,'_wp_page_template','default'),(4703,7007,'_elementor_edit_mode','builder'),(4704,7007,'_elementor_template_type','wp-page'),(4705,7007,'_elementor_version','3.15.3'),(4706,7007,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4707,7007,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4708,7007,'_elementor_pro_version','3.15.0'),(4710,7008,'_wp_page_template','default'),(4711,7008,'_elementor_edit_mode','builder'),(4712,7008,'_elementor_template_type','wp-page'),(4713,7008,'_elementor_version','3.15.3'),(4714,7008,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4715,7008,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4716,7008,'_elementor_pro_version','3.15.0'),(4718,7009,'_wp_page_template','default'),(4719,7009,'_elementor_edit_mode','builder'),(4720,7009,'_elementor_template_type','wp-page'),(4721,7009,'_elementor_version','3.15.3'),(4722,7009,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4723,7009,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4724,7009,'_elementor_pro_version','3.15.0'),(4728,7010,'_wp_attached_file','2023/09/map.png');
INSERT INTO `wpsl_postmeta` VALUES (4729,7010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1379;s:6:\"height\";i:771;s:4:\"file\";s:15:\"2023/09/map.png\";s:8:\"filesize\";i:1139772;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"map-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61468;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"map-1024x573.png\";s:5:\"width\";i:1024;s:6:\"height\";i:573;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:480338;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29894;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"map-768x429.png\";s:5:\"width\";i:768;s:6:\"height\";i:429;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:303897;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:15:\"map-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146432;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:15:\"map-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127747;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:15:\"map-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:278602;}}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:{}}}'),(4730,7010,'_wp_attachment_image_alt','map'),(4731,7011,'_wp_page_template','default'),(4732,7011,'_elementor_edit_mode','builder'),(4733,7011,'_elementor_template_type','wp-page'),(4734,7011,'_elementor_version','3.15.3'),(4735,7011,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4736,7011,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4737,7011,'_elementor_pro_version','3.15.0'),(4739,7012,'_wp_page_template','default'),(4740,7012,'_elementor_edit_mode','builder'),(4741,7012,'_elementor_template_type','wp-page'),(4742,7012,'_elementor_version','3.15.3'),(4743,7012,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Temp-Slide-1.png\",\"id\":6994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4744,7012,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4745,7012,'_elementor_pro_version','3.15.0'),(4747,7013,'_wp_page_template','default'),(4748,7013,'_elementor_edit_mode','builder'),(4749,7013,'_elementor_template_type','wp-page'),(4750,7013,'_elementor_version','3.15.3'),(4751,7013,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4752,7013,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(4753,7013,'_elementor_pro_version','3.15.0'),(4757,7014,'_elementor_edit_mode','builder'),(4758,7014,'_elementor_template_type','wp-page'),(4759,7014,'_elementor_version','3.15.3'),(4760,7014,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4761,7014,'_wp_page_template','default'),(4762,7014,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4763,7014,'_elementor_pro_version','3.15.0'),(4765,7015,'_elementor_edit_mode','builder'),(4766,7015,'_elementor_template_type','wp-page'),(4767,7015,'_elementor_version','3.15.3'),(4768,7015,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4769,7015,'_wp_page_template','default'),(4770,7015,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4771,7015,'_elementor_pro_version','3.15.0'),(4773,7016,'_elementor_edit_mode','builder'),(4774,7016,'_elementor_template_type','wp-page'),(4775,7016,'_elementor_version','3.15.3'),(4776,7016,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4777,7016,'_wp_page_template','default'),(4778,7016,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4779,7016,'_elementor_pro_version','3.15.0'),(4783,7017,'_elementor_edit_mode','builder'),(4784,7017,'_elementor_template_type','wp-page'),(4785,7017,'_elementor_version','3.15.3'),(4786,7017,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4787,7017,'_wp_page_template','default'),(4788,7017,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4789,7017,'_elementor_pro_version','3.15.0'),(4791,7018,'_elementor_edit_mode','builder'),(4792,7018,'_elementor_template_type','wp-page'),(4793,7018,'_elementor_version','3.15.3'),(4794,7018,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4795,7018,'_wp_page_template','default'),(4796,7018,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4797,7018,'_elementor_pro_version','3.15.0'),(4799,7019,'_elementor_edit_mode','builder'),(4800,7019,'_elementor_template_type','wp-page'),(4801,7019,'_elementor_version','3.15.3'),(4802,7019,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4803,7019,'_wp_page_template','default'),(4804,7019,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4805,7019,'_elementor_pro_version','3.15.0'),(4809,7020,'_elementor_edit_mode','builder'),(4810,7020,'_elementor_template_type','wp-page'),(4811,7020,'_elementor_version','3.15.3'),(4812,7020,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4813,7020,'_wp_page_template','default'),(4814,7020,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4815,7020,'_elementor_pro_version','3.15.0'),(4817,7021,'_elementor_edit_mode','builder'),(4818,7021,'_elementor_template_type','wp-page'),(4819,7021,'_elementor_version','3.15.3'),(4820,7021,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4821,7021,'_wp_page_template','default'),(4822,7021,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4823,7021,'_elementor_pro_version','3.15.0'),(4825,7022,'_elementor_edit_mode','builder'),(4826,7022,'_elementor_template_type','wp-page'),(4827,7022,'_elementor_version','3.15.3'),(4828,7022,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4829,7022,'_wp_page_template','default'),(4830,7022,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4831,7022,'_elementor_pro_version','3.15.0'),(4835,7023,'_elementor_edit_mode','builder'),(4836,7023,'_elementor_template_type','wp-page'),(4837,7023,'_elementor_version','3.15.3'),(4838,7023,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4839,7023,'_wp_page_template','default'),(4840,7023,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4841,7023,'_elementor_pro_version','3.15.0'),(4843,7024,'_elementor_edit_mode','builder'),(4844,7024,'_elementor_template_type','wp-page'),(4845,7024,'_elementor_version','3.15.3'),(4846,7024,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4847,7024,'_wp_page_template','default'),(4848,7024,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4849,7024,'_elementor_pro_version','3.15.0'),(4851,7025,'_elementor_edit_mode','builder'),(4852,7025,'_elementor_template_type','wp-page'),(4853,7025,'_elementor_version','3.15.3'),(4854,7025,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4855,7025,'_wp_page_template','default'),(4856,7025,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4857,7025,'_elementor_pro_version','3.15.0'),(4861,7026,'_elementor_edit_mode','builder'),(4862,7026,'_elementor_template_type','wp-page'),(4863,7026,'_elementor_version','3.15.3'),(4864,7026,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4865,7026,'_wp_page_template','default'),(4866,7026,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4867,7026,'_elementor_pro_version','3.15.0'),(4869,7027,'_elementor_edit_mode','builder'),(4870,7027,'_elementor_template_type','wp-page'),(4871,7027,'_elementor_version','3.15.3'),(4872,7027,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4873,7027,'_wp_page_template','default'),(4874,7027,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4875,7027,'_elementor_pro_version','3.15.0'),(4877,7028,'_elementor_edit_mode','builder'),(4878,7028,'_elementor_template_type','wp-page'),(4879,7028,'_elementor_version','3.15.3'),(4880,7028,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4881,7028,'_wp_page_template','default'),(4882,7028,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(4883,7028,'_elementor_pro_version','3.15.0'),(4887,7029,'_wp_page_template','elementor_theme'),(4888,7029,'_elementor_edit_mode','builder'),(4889,7029,'_elementor_template_type','wp-post'),(4890,7029,'_elementor_version','3.15.3'),(4891,7029,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4892,7029,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4893,7029,'_elementor_pro_version','3.15.0'),(4895,7030,'_wp_page_template','elementor_theme'),(4896,7030,'_elementor_edit_mode','builder'),(4897,7030,'_elementor_template_type','wp-post'),(4898,7030,'_elementor_version','3.15.3'),(4899,7030,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"link\":{\"url\":\"mailto: marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4900,7030,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4901,7030,'_elementor_pro_version','3.15.0'),(4903,7031,'_wp_page_template','elementor_theme'),(4904,7031,'_elementor_edit_mode','builder'),(4905,7031,'_elementor_template_type','wp-post'),(4906,7031,'_elementor_version','3.15.3'),(4907,7031,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4908,7031,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4909,7031,'_elementor_pro_version','3.15.0'),(4912,7032,'_wp_page_template','elementor_theme'),(4913,7032,'_elementor_edit_mode','builder'),(4914,7032,'_elementor_template_type','wp-post'),(4915,7032,'_elementor_version','3.15.3'),(4916,7032,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4917,7032,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4918,7032,'_elementor_pro_version','3.15.0'),(4919,7033,'_wp_page_template','elementor_theme'),(4920,7033,'_elementor_edit_mode','builder'),(4921,7033,'_elementor_template_type','wp-post'),(4922,7033,'_elementor_version','3.15.3'),(4923,7033,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4924,7033,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4925,7033,'_elementor_pro_version','3.15.0'),(4926,7034,'_wp_page_template','elementor_theme'),(4927,7034,'_elementor_edit_mode','builder'),(4928,7034,'_elementor_template_type','wp-post'),(4929,7034,'_elementor_version','3.15.3'),(4930,7034,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4931,7034,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4932,7034,'_elementor_pro_version','3.15.0'),(4934,7035,'_wp_page_template','elementor_theme'),(4935,7035,'_elementor_edit_mode','builder'),(4936,7035,'_elementor_template_type','wp-post'),(4937,7035,'_elementor_version','3.15.3'),(4938,7035,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4939,7035,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4940,7035,'_elementor_pro_version','3.15.0'),(4941,7036,'_wp_page_template','elementor_theme'),(4942,7036,'_elementor_edit_mode','builder'),(4943,7036,'_elementor_template_type','wp-post'),(4944,7036,'_elementor_version','3.15.3'),(4945,7036,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4946,7036,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4947,7036,'_elementor_pro_version','3.15.0'),(4948,7037,'_wp_page_template','elementor_theme'),(4949,7037,'_elementor_edit_mode','builder'),(4950,7037,'_elementor_template_type','wp-post'),(4951,7037,'_elementor_version','3.15.3'),(4952,7037,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4953,7037,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4954,7037,'_elementor_pro_version','3.15.0'),(4957,7038,'_wp_page_template','elementor_theme'),(4958,7038,'_elementor_edit_mode','builder'),(4959,7038,'_elementor_template_type','wp-post'),(4960,7038,'_elementor_version','3.15.3');
INSERT INTO `wpsl_postmeta` VALUES (4961,7038,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4962,7038,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4963,7038,'_elementor_pro_version','3.15.0'),(4965,7039,'_wp_page_template','elementor_theme'),(4966,7039,'_elementor_edit_mode','builder'),(4967,7039,'_elementor_template_type','wp-post'),(4968,7039,'_elementor_version','3.15.3'),(4969,7039,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer-icon.png\",\"id\":6655,\"size\":\"\",\"alt\":\"footer-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4970,7039,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4971,7039,'_elementor_pro_version','3.15.0'),(4973,7040,'_wp_page_template','elementor_theme'),(4974,7040,'_elementor_edit_mode','builder'),(4975,7040,'_elementor_template_type','wp-post'),(4976,7040,'_elementor_version','3.15.3'),(4977,7040,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4978,7040,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4979,7040,'_elementor_pro_version','3.15.0'),(4983,7041,'_wp_page_template','elementor_theme'),(4984,7041,'_elementor_edit_mode','builder'),(4985,7041,'_elementor_template_type','wp-post'),(4986,7041,'_elementor_version','3.15.3'),(4987,7041,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4988,7041,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4989,7041,'_elementor_pro_version','3.15.0'),(4991,7042,'_wp_page_template','elementor_theme'),(4992,7042,'_elementor_edit_mode','builder'),(4993,7042,'_elementor_template_type','wp-post'),(4994,7042,'_elementor_version','3.15.3'),(4995,7042,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4996,7042,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4997,7042,'_elementor_pro_version','3.15.0'),(4999,7043,'_wp_page_template','elementor_theme'),(5000,7043,'_elementor_edit_mode','builder'),(5001,7043,'_elementor_template_type','wp-post'),(5002,7043,'_elementor_version','3.15.3'),(5003,7043,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5004,7043,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5005,7043,'_elementor_pro_version','3.15.0'),(5009,7044,'_wp_page_template','elementor_theme'),(5010,7044,'_elementor_edit_mode','builder'),(5011,7044,'_elementor_template_type','wp-post'),(5012,7044,'_elementor_version','3.15.3'),(5013,7044,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5014,7044,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5015,7044,'_elementor_pro_version','3.15.0'),(5017,7045,'_wp_page_template','elementor_theme'),(5018,7045,'_elementor_edit_mode','builder'),(5019,7045,'_elementor_template_type','wp-post'),(5020,7045,'_elementor_version','3.15.3'),(5021,7045,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#004699\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5022,7045,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5023,7045,'_elementor_pro_version','3.15.0'),(5025,7046,'_wp_page_template','elementor_theme'),(5026,7046,'_elementor_edit_mode','builder'),(5027,7046,'_elementor_template_type','wp-post'),(5028,7046,'_elementor_version','3.15.3'),(5029,7046,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5030,7046,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5031,7046,'_elementor_pro_version','3.15.0'),(5035,7047,'_elementor_edit_mode','builder'),(5036,7047,'_elementor_template_type','wp-page'),(5037,7047,'_elementor_version','3.15.3'),(5038,7047,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5039,7047,'_wp_page_template','default'),(5040,7047,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5041,7047,'_elementor_pro_version','3.15.0'),(5043,7048,'_elementor_edit_mode','builder'),(5044,7048,'_elementor_template_type','wp-page'),(5045,7048,'_elementor_version','3.15.3'),(5046,7048,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5047,7048,'_wp_page_template','default'),(5048,7048,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5049,7048,'_elementor_pro_version','3.15.0'),(5051,7049,'_elementor_edit_mode','builder'),(5052,7049,'_elementor_template_type','wp-page'),(5053,7049,'_elementor_version','3.15.3'),(5054,7049,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5055,7049,'_wp_page_template','default'),(5056,7049,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5057,7049,'_elementor_pro_version','3.15.0'),(5061,7050,'_wp_page_template','elementor_theme'),(5062,7050,'_elementor_edit_mode','builder'),(5063,7050,'_elementor_template_type','wp-post'),(5064,7050,'_elementor_version','3.15.3'),(5065,7050,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5066,7050,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5067,7050,'_elementor_pro_version','3.15.0'),(5069,7051,'_wp_page_template','elementor_theme'),(5070,7051,'_elementor_edit_mode','builder'),(5071,7051,'_elementor_template_type','wp-post'),(5072,7051,'_elementor_version','3.15.3'),(5073,7051,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+ 65 6817 1978\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5074,7051,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5075,7051,'_elementor_pro_version','3.15.0'),(5077,7052,'_wp_page_template','elementor_theme'),(5078,7052,'_elementor_edit_mode','builder'),(5079,7052,'_elementor_template_type','wp-post'),(5080,7052,'_elementor_version','3.15.3'),(5081,7052,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+65 9677 2316\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5082,7052,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5083,7052,'_elementor_pro_version','3.15.0'),(5087,7053,'_wp_page_template','elementor_theme'),(5088,7053,'_elementor_edit_mode','builder'),(5089,7053,'_elementor_template_type','wp-post'),(5090,7053,'_elementor_version','3.15.3'),(5091,7053,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+65 9677 2316\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5092,7053,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5093,7053,'_elementor_pro_version','3.15.0'),(5095,7054,'_wp_page_template','elementor_theme'),(5096,7054,'_elementor_edit_mode','builder'),(5097,7054,'_elementor_template_type','wp-post'),(5098,7054,'_elementor_version','3.15.3'),(5099,7054,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+65 9677 2316\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#1B1B1B\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#8A8A8A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5100,7054,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5101,7054,'_elementor_pro_version','3.15.0'),(5103,7055,'_wp_page_template','elementor_theme'),(5104,7055,'_elementor_edit_mode','builder'),(5105,7055,'_elementor_template_type','wp-post'),(5106,7055,'_elementor_version','3.15.3'),(5107,7055,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+65 9677 2316\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5108,7055,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5109,7055,'_elementor_pro_version','3.15.0'),(5128,7059,'_elementor_template_type','wp-page'),(5129,7059,'_elementor_version','3.15.3'),(5130,7059,'_elementor_edit_mode','builder'),(5131,7059,'_wp_page_template','default'),(5132,7059,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5133,7059,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5134,7059,'_elementor_pro_version','3.15.0'),(5135,7060,'_elementor_template_type','wp-page'),(5136,7060,'_elementor_version','3.15.3'),(5137,7060,'_elementor_edit_mode','builder'),(5138,7060,'_wp_page_template','default'),(5139,7060,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5140,7060,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5141,7060,'_elementor_pro_version','3.15.0'),(5142,7061,'_elementor_template_type','wp-page'),(5143,7061,'_elementor_version','3.15.3'),(5144,7061,'_elementor_edit_mode','builder'),(5145,7061,'_wp_page_template','default'),(5146,7061,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5147,7061,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5148,7061,'_elementor_pro_version','3.15.0'),(5150,7062,'_elementor_template_type','wp-page'),(5151,7062,'_elementor_version','3.15.3'),(5152,7062,'_elementor_edit_mode','builder'),(5153,7062,'_wp_page_template','default'),(5154,7062,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5155,7062,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5156,7062,'_elementor_pro_version','3.15.0'),(5157,7063,'_elementor_template_type','wp-page'),(5158,7063,'_elementor_version','3.15.3'),(5159,7063,'_elementor_edit_mode','builder'),(5160,7063,'_wp_page_template','default'),(5161,7063,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5162,7063,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5163,7063,'_elementor_pro_version','3.15.0'),(5164,7064,'_elementor_template_type','wp-page'),(5165,7064,'_elementor_version','3.15.3'),(5166,7064,'_elementor_edit_mode','builder'),(5167,7064,'_wp_page_template','default'),(5168,7064,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5169,7064,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5170,7064,'_elementor_pro_version','3.15.0'),(5172,7065,'_elementor_template_type','wp-page'),(5173,7065,'_elementor_version','3.15.3'),(5174,7065,'_elementor_edit_mode','builder'),(5175,7065,'_wp_page_template','default'),(5176,7065,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5177,7065,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5178,7065,'_elementor_pro_version','3.15.0'),(5179,7066,'_elementor_template_type','wp-page'),(5180,7066,'_elementor_version','3.15.3'),(5181,7066,'_elementor_edit_mode','builder'),(5182,7066,'_wp_page_template','default'),(5183,7066,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5184,7066,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5185,7066,'_elementor_pro_version','3.15.0'),(5186,7067,'_elementor_template_type','wp-page'),(5187,7067,'_elementor_version','3.15.3'),(5188,7067,'_elementor_edit_mode','builder'),(5189,7067,'_wp_page_template','default'),(5190,7067,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5191,7067,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5192,7067,'_elementor_pro_version','3.15.0'),(5194,7068,'_wp_page_template','elementor_theme'),(5195,7068,'_elementor_edit_mode','builder'),(5196,7068,'_elementor_template_type','wp-post'),(5197,7068,'_elementor_version','3.15.3'),(5198,7068,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+65 9677 2316\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5199,7068,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5200,7068,'_elementor_pro_version','3.15.0'),(5202,7069,'_wp_page_template','elementor_theme'),(5203,7069,'_elementor_edit_mode','builder'),(5204,7069,'_elementor_template_type','wp-post'),(5205,7069,'_elementor_version','3.15.3'),(5206,7069,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+65 9677 2316\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5207,7069,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5208,7069,'_elementor_pro_version','3.15.0'),(5210,7070,'_wp_page_template','elementor_theme'),(5211,7070,'_elementor_edit_mode','builder'),(5212,7070,'_elementor_template_type','wp-post'),(5213,7070,'_elementor_version','3.15.3'),(5214,7070,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+65 9677 2316\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5215,7070,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5216,7070,'_elementor_pro_version','3.15.0'),(5220,7072,'_elementor_edit_mode','builder'),(5221,7072,'_elementor_template_type','kit'),(5223,7072,'_wp_page_template','default'),(5224,7072,'_elementor_page_settings','a:2:{s:9:\"site_name\";s:6:\"ESi-Go\";s:16:\"site_description\";s:0:\"\";}'),(5228,30,'_edit_last','1'),(5229,7073,'_wp_page_template','default'),(5230,7073,'_elementor_edit_mode','builder'),(5231,7073,'_elementor_template_type','wp-page'),(5232,7073,'_elementor_version','3.15.3'),(5233,7073,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5234,7073,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5235,7073,'_elementor_pro_version','3.15.0'),(5236,7073,'_elementor_controls_usage','a:9:{s:5:\"image\";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_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:7:{s:14:\"_element_width\";i:1;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:9:\"_offset_x\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:12:\"_css_classes\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:23:\"bizmax-about-experience\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"buconz_tab_content\";a:6:{s:20:\"bizmax_exp_thumb_img\";i:1;s:20:\"bizmax_exp_shape_one\";i:1;s:23:\"bizmax_exp_box_thumb_bg\";i:1;s:19:\"bizmax_exp_box_icon\";i:1;s:18:\"bizmax_exp_box_num\";i:1;s:19:\"bizmax_exp_box_desc\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:18;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:14;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:2;}}}}s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:20:\"bizmax_section_label\";i:6;s:20:\"bizmax_section_title\";i:6;s:19:\"bizmax_section_desc\";i:5;s:19:\"bizmax_stitle_style\";i:6;s:22:\"bizmax_stitle_position\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:4:{s:16:\"content_position\";i:2;s:6:\"layout\";i:6;s:15:\"stretch_section\";i:5;s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:4:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:3;s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;s:16:\"background_color\";i:1;}}}}s:15:\"bizmax-services\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:19:\"bizmax_service_desc\";i:4;s:20:\"bizmax_service_thumb\";i:4;s:15:\"bizmax_btn_link\";i:4;s:15:\"bizmax_icon_img\";i:4;s:20:\"bizmax_service_title\";i:3;}}}}s:16:\"bizmax-small-cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:18:\"bizmax_tab_content\";a:3:{s:16:\"bizmax_cta_title\";i:1;s:19:\"bizmax_stitle_color\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:18:\"bizmax-team-modern\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:7:\"c_lists\";i:1;s:11:\"team_layout\";i:1;s:18:\"bizmax_grid_column\";i:1;}s:16:\"settings_section\";a:1:{s:20:\"bizmax_slider_column\";i:1;}}}}s:19:\"bizmax-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:12:\"bizmax_lists\";i:1;s:17:\"bizmax_title_desc\";i:1;s:21:\"bizmax_testimonial_bg\";i:1;}s:23:\"bizmax_settings_section\";a:4:{s:26:\"bizmax_slider_column_large\";i:1;s:20:\"bizmax_slider_column\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;}}}}}'),(5238,7074,'_elementor_edit_mode','builder'),(5239,7074,'_elementor_template_type','page'),(5240,7074,'_elementor_version','3.15.3'),(5241,7074,'_elementor_pro_version','3.15.0'),(5242,7075,'_elementor_edit_mode','builder'),(5243,7075,'_elementor_template_type','page'),(5244,7075,'_elementor_version','3.15.3'),(5245,7075,'_elementor_pro_version','3.15.0'),(5246,7074,'_wp_page_template','default'),(5247,7074,'_elementor_data','[{\"id\":\"61a12749\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b9ba3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"26fe8796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"319b1286\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6e8c6260\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"73a30a97\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"421ec462\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1741f960\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60cf0916\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"5e8de4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ab72845\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"66f759c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"c3418ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47acf0a5\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6062778c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d6131e5\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b138be5\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"46bab980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4db4e50a\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"1fec0cc7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1edbcae4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d8d8b03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29855799\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40d0cc36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"46f616a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36f428ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"15db6561\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"314c793b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1805f7bf\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"7d8480b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1d18785f\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"24c2f8eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3576ec3c\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ca55a4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"46ff4fc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1592f876\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d8a034d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"18f01da8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"29b20b85\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3cb1620d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6e148c06\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d757065\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"44c20264\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7daf9054\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52edb156\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"36cfbd8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a35361\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5248,7076,'_elementor_edit_mode','builder'),(5249,7076,'_elementor_template_type','page'),(5250,7076,'_elementor_version','3.15.3'),(5251,7076,'_elementor_pro_version','3.15.0'),(5252,7076,'_wp_page_template','default'),(5253,7076,'_elementor_data','[{\"id\":\"61a12749\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b9ba3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"26fe8796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"319b1286\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6e8c6260\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"73a30a97\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"421ec462\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"1741f960\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60cf0916\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"5e8de4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ab72845\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"66f759c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"c3418ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47acf0a5\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6062778c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d6131e5\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b138be5\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"46bab980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4db4e50a\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"1fec0cc7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1edbcae4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d8d8b03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29855799\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40d0cc36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"46f616a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36f428ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"15db6561\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"314c793b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1805f7bf\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"7d8480b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1d18785f\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"24c2f8eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3576ec3c\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ca55a4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"46ff4fc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1592f876\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d8a034d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"18f01da8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"29b20b85\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3cb1620d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6e148c06\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d757065\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"44c20264\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7daf9054\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52edb156\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"36cfbd8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a35361\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5254,7074,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5255,7074,'_elementor_controls_usage','a:9:{s:5:\"image\";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_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:7:{s:14:\"_element_width\";i:1;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:9:\"_offset_x\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:12:\"_css_classes\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:23:\"bizmax-about-experience\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"buconz_tab_content\";a:6:{s:20:\"bizmax_exp_thumb_img\";i:1;s:20:\"bizmax_exp_shape_one\";i:1;s:23:\"bizmax_exp_box_thumb_bg\";i:1;s:19:\"bizmax_exp_box_icon\";i:1;s:18:\"bizmax_exp_box_num\";i:1;s:19:\"bizmax_exp_box_desc\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:18;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:14;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:2;}}}}s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:20:\"bizmax_section_label\";i:6;s:20:\"bizmax_section_title\";i:6;s:19:\"bizmax_section_desc\";i:5;s:19:\"bizmax_stitle_style\";i:6;s:22:\"bizmax_stitle_position\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:4:{s:16:\"content_position\";i:2;s:6:\"layout\";i:6;s:15:\"stretch_section\";i:5;s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:4:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:3;s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;s:16:\"background_color\";i:1;}}}}s:15:\"bizmax-services\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:19:\"bizmax_service_desc\";i:4;s:20:\"bizmax_service_thumb\";i:4;s:15:\"bizmax_btn_link\";i:4;s:15:\"bizmax_icon_img\";i:4;s:20:\"bizmax_service_title\";i:3;}}}}s:16:\"bizmax-small-cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:18:\"bizmax_tab_content\";a:3:{s:16:\"bizmax_cta_title\";i:1;s:19:\"bizmax_stitle_color\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:18:\"bizmax-team-modern\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:7:\"c_lists\";i:1;s:11:\"team_layout\";i:1;s:18:\"bizmax_grid_column\";i:1;}s:16:\"settings_section\";a:1:{s:20:\"bizmax_slider_column\";i:1;}}}}s:19:\"bizmax-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:12:\"bizmax_lists\";i:1;s:17:\"bizmax_title_desc\";i:1;s:21:\"bizmax_testimonial_bg\";i:1;}s:23:\"bizmax_settings_section\";a:4:{s:26:\"bizmax_slider_column_large\";i:1;s:20:\"bizmax_slider_column\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;}}}}}'),(5277,7080,'_wp_page_template','default'),(5278,7080,'_elementor_edit_mode','builder'),(5279,7080,'_elementor_template_type','wp-page'),(5280,7080,'_elementor_version','3.15.3'),(5281,7080,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5282,7080,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5283,7080,'_elementor_pro_version','3.15.0'),(5284,7080,'_elementor_controls_usage','a:9:{s:5:\"image\";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_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:7:{s:14:\"_element_width\";i:1;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:9:\"_offset_x\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:12:\"_css_classes\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:23:\"bizmax-about-experience\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"buconz_tab_content\";a:6:{s:20:\"bizmax_exp_thumb_img\";i:1;s:20:\"bizmax_exp_shape_one\";i:1;s:23:\"bizmax_exp_box_thumb_bg\";i:1;s:19:\"bizmax_exp_box_icon\";i:1;s:18:\"bizmax_exp_box_num\";i:1;s:19:\"bizmax_exp_box_desc\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:18;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:14;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:2;}}}}s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:20:\"bizmax_section_label\";i:6;s:20:\"bizmax_section_title\";i:6;s:19:\"bizmax_section_desc\";i:5;s:19:\"bizmax_stitle_style\";i:6;s:22:\"bizmax_stitle_position\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:4:{s:16:\"content_position\";i:2;s:6:\"layout\";i:6;s:15:\"stretch_section\";i:5;s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:4:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:3;s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;s:16:\"background_color\";i:1;}}}}s:15:\"bizmax-services\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:19:\"bizmax_service_desc\";i:4;s:20:\"bizmax_service_thumb\";i:4;s:15:\"bizmax_btn_link\";i:4;s:15:\"bizmax_icon_img\";i:4;s:20:\"bizmax_service_title\";i:3;}}}}s:16:\"bizmax-small-cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:18:\"bizmax_tab_content\";a:3:{s:16:\"bizmax_cta_title\";i:1;s:19:\"bizmax_stitle_color\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:18:\"bizmax-team-modern\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:7:\"c_lists\";i:1;s:11:\"team_layout\";i:1;s:18:\"bizmax_grid_column\";i:1;}s:16:\"settings_section\";a:1:{s:20:\"bizmax_slider_column\";i:1;}}}}s:19:\"bizmax-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:12:\"bizmax_lists\";i:1;s:17:\"bizmax_title_desc\";i:1;s:21:\"bizmax_testimonial_bg\";i:1;}s:23:\"bizmax_settings_section\";a:4:{s:26:\"bizmax_slider_column_large\";i:1;s:20:\"bizmax_slider_column\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;}}}}}'),(5286,30,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(5287,30,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(5288,7081,'_wp_page_template','default'),(5289,7081,'_elementor_edit_mode','builder'),(5290,7081,'_elementor_template_type','wp-page'),(5291,7081,'_elementor_version','3.15.3'),(5292,7081,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5293,7081,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(5294,7081,'_elementor_pro_version','3.15.0'),(5295,7081,'_elementor_controls_usage','a:6:{s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:3:{s:20:\"bizmax_section_title\";i:1;s:19:\"bizmax_stitle_style\";i:1;s:22:\"bizmax_stitle_position\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:11;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:7;s:15:\"animation_delay\";i:5;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:2;s:15:\"stretch_section\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;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:16:\"background_color\";i:1;}}}}s:15:\"bizmax-services\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:20:\"bizmax_service_title\";i:5;s:19:\"bizmax_service_desc\";i:5;s:20:\"bizmax_service_thumb\";i:5;s:15:\"bizmax_btn_link\";i:5;s:15:\"bizmax_icon_img\";i:5;}}}}s:18:\"bizmax-brand-logos\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:1:{s:12:\"bizmax_lists\";i:1;}s:23:\"bizmax_settings_section\";a:5:{s:20:\"bizmax_slider_column\";i:1;s:24:\"bizmax_slider_column_tab\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;s:17:\"bizmax_slider_nav\";i:1;}}}}s:19:\"bizmax-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:12:\"bizmax_lists\";i:1;s:17:\"bizmax_title_desc\";i:1;s:21:\"bizmax_testimonial_bg\";i:1;}s:23:\"bizmax_settings_section\";a:4:{s:26:\"bizmax_slider_column_large\";i:1;s:20:\"bizmax_slider_column\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;}}}}}'),(5297,7082,'_elementor_template_type','wp-page'),(5298,7082,'_elementor_version','3.15.3'),(5299,7082,'_elementor_edit_mode','builder'),(5300,7082,'_wp_page_template','default'),(5301,7082,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5302,7082,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5303,7082,'_elementor_pro_version','3.15.0'),(5304,7082,'_elementor_controls_usage','a:6:{s:23:\"bizmax-list-step-widget\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:15:\"animation_delay\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:2;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;}}}}s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:6:{s:19:\"bizmax_stitle_style\";i:1;s:20:\"bizmax_section_label\";i:1;s:20:\"bizmax_section_title\";i:1;s:19:\"bizmax_section_desc\";i:1;s:19:\"bizmax_stitle_color\";i:1;s:18:\"bizmax_stext_color\";i:1;}}}}s:19:\"bizmax-contact-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:2:{s:7:\"c_lists\";i:1;s:19:\"bizmax_stitle_color\";i:1;}}}}s:21:\"bizmax-contact-modern\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:7:\"form_id\";i:1;s:18:\"bizmax_contact_img\";i:1;s:21:\"bizmax_contact_bg_img\";i:1;s:20:\"bizmax_contact_title\";i:1;}}}}}'),(5306,7084,'_elementor_edit_mode','builder'),(5307,7084,'_elementor_template_type','wp-page'),(5308,7084,'_elementor_version','3.15.3'),(5309,7084,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5310,7084,'_wp_page_template','default'),(5311,7084,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5312,7084,'_elementor_pro_version','3.15.0'),(5314,7085,'_elementor_edit_mode','builder'),(5315,7085,'_elementor_template_type','wp-page'),(5316,7085,'_elementor_version','3.15.3'),(5317,7085,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_sub_title\":\"This Week Only for World Premier\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5318,7085,'_wp_page_template','default'),(5319,7085,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5320,7085,'_elementor_pro_version','3.15.0'),(5322,7086,'_elementor_edit_mode','builder'),(5323,7086,'_elementor_template_type','wp-page'),(5324,7086,'_elementor_version','3.15.3'),(5325,7086,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5326,7086,'_wp_page_template','default'),(5327,7086,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5328,7086,'_elementor_pro_version','3.15.0'),(5331,7087,'_elementor_edit_mode','builder'),(5332,7087,'_elementor_template_type','wp-page'),(5333,7087,'_elementor_version','3.15.3'),(5334,7087,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5335,7087,'_wp_page_template','default'),(5336,7087,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5337,7087,'_elementor_pro_version','3.15.0'),(5338,7088,'_elementor_edit_mode','builder'),(5339,7088,'_elementor_template_type','wp-page'),(5340,7088,'_elementor_version','3.15.3'),(5341,7088,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5342,7088,'_wp_page_template','default'),(5343,7088,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5344,7088,'_elementor_pro_version','3.15.0'),(5345,7089,'_elementor_edit_mode','builder'),(5346,7089,'_elementor_template_type','wp-page'),(5347,7089,'_elementor_version','3.15.3'),(5348,7089,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5349,7089,'_wp_page_template','default'),(5350,7089,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5351,7089,'_elementor_pro_version','3.15.0'),(5354,7090,'_wp_page_template','elementor_theme'),(5355,7090,'_elementor_edit_mode','builder'),(5356,7090,'_elementor_template_type','wp-post'),(5357,7090,'_elementor_version','3.15.3'),(5358,7090,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+65 9677 2316\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5359,7090,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5360,7090,'_elementor_pro_version','3.15.0'),(5362,7091,'_wp_page_template','elementor_theme'),(5363,7091,'_elementor_edit_mode','builder'),(5364,7091,'_elementor_template_type','wp-post'),(5365,7091,'_elementor_version','3.15.3'),(5366,7091,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e124303\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ab73a44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have Any Question?\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43b9abc\",\"elType\":\"widget\",\"settings\":{\"title\":\"+65 9677 2316\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f355940\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"34\",\"isLinked\":false},\"css_classes\":\"footer-bottom-right\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2904ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send Email\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c37dc42\",\"elType\":\"widget\",\"settings\":{\"title\":\" marketing@esi-asia.com\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO Asia Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e27ab6\"},{\"text\":\"Articles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/portfolio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ed828bc\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5367,7091,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5368,7091,'_elementor_pro_version','3.15.0'),(5370,7092,'_wp_page_template','elementor_theme'),(5371,7092,'_elementor_edit_mode','builder'),(5372,7092,'_elementor_template_type','wp-post'),(5373,7092,'_elementor_version','3.15.3');
INSERT INTO `wpsl_postmeta` VALUES (5374,7092,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5375,7092,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5376,7092,'_elementor_pro_version','3.15.0'),(5380,7093,'_wp_page_template','elementor_theme'),(5381,7093,'_elementor_edit_mode','builder'),(5382,7093,'_elementor_template_type','wp-post'),(5383,7093,'_elementor_version','3.15.3'),(5384,7093,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5385,7093,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5386,7093,'_elementor_pro_version','3.15.0'),(5388,7094,'_wp_page_template','elementor_theme'),(5389,7094,'_elementor_edit_mode','builder'),(5390,7094,'_elementor_template_type','wp-post'),(5391,7094,'_elementor_version','3.15.3'),(5392,7094,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"32a09f4\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9b56f21\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5393,7094,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5394,7094,'_elementor_pro_version','3.15.0'),(5396,7095,'_wp_page_template','elementor_theme'),(5397,7095,'_elementor_edit_mode','builder'),(5398,7095,'_elementor_template_type','wp-post'),(5399,7095,'_elementor_version','3.15.3'),(5400,7095,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5401,7095,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5402,7095,'_elementor_pro_version','3.15.0'),(5406,7096,'_wp_page_template','default'),(5407,7096,'_elementor_edit_mode','builder'),(5408,7096,'_elementor_template_type','wp-page'),(5409,7096,'_elementor_version','3.15.3'),(5410,7096,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5411,7096,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5412,7096,'_elementor_pro_version','3.15.0'),(5414,7097,'_wp_page_template','default'),(5415,7097,'_elementor_edit_mode','builder'),(5416,7097,'_elementor_template_type','wp-page'),(5417,7097,'_elementor_version','3.15.3'),(5418,7097,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br\\/>\\n<br\\/>\\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\\n<br\\/><br\\/>\\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).\\n<br\\/><br\\/>\\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\\n<br\\/><br\\/>\\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5419,7097,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5420,7097,'_elementor_pro_version','3.15.0'),(5422,7098,'_wp_page_template','default'),(5423,7098,'_elementor_edit_mode','builder'),(5424,7098,'_elementor_template_type','wp-page'),(5425,7098,'_elementor_version','3.15.3'),(5426,7098,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5427,7098,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5428,7098,'_elementor_pro_version','3.15.0'),(5432,7099,'_wp_page_template','elementor_theme'),(5433,7099,'_elementor_edit_mode','builder'),(5434,7099,'_elementor_template_type','wp-post'),(5435,7099,'_elementor_version','3.15.3'),(5436,7099,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5437,7099,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5438,7099,'_elementor_pro_version','3.15.0'),(5440,7100,'_wp_page_template','elementor_theme'),(5441,7100,'_elementor_edit_mode','builder'),(5442,7100,'_elementor_template_type','wp-post'),(5443,7100,'_elementor_version','3.15.3'),(5444,7100,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go-1024x424-putih.png\",\"id\":6957,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5445,7100,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5446,7100,'_elementor_pro_version','3.15.0'),(5448,7101,'_wp_page_template','elementor_theme'),(5449,7101,'_elementor_edit_mode','builder'),(5450,7101,'_elementor_template_type','wp-post'),(5451,7101,'_elementor_version','3.15.3'),(5452,7101,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5453,7101,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5454,7101,'_elementor_pro_version','3.15.0'),(5476,7104,'_wp_page_template','default'),(5477,7104,'_elementor_edit_mode','builder'),(5478,7104,'_elementor_template_type','wp-page'),(5479,7104,'_elementor_version','3.15.3'),(5480,7104,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5481,7104,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5482,7104,'_elementor_pro_version','3.15.0'),(5483,7105,'_wp_page_template','default'),(5484,7105,'_elementor_edit_mode','builder'),(5485,7105,'_elementor_template_type','wp-page'),(5486,7105,'_elementor_version','3.15.3'),(5487,7105,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5488,7105,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5489,7105,'_elementor_pro_version','3.15.0'),(5490,7106,'_wp_page_template','default'),(5491,7106,'_elementor_edit_mode','builder'),(5492,7106,'_elementor_template_type','wp-page'),(5493,7106,'_elementor_version','3.15.3'),(5494,7106,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5495,7106,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5496,7106,'_elementor_pro_version','3.15.0'),(5499,7107,'_wp_page_template','default'),(5500,7107,'_elementor_edit_mode','builder'),(5501,7107,'_elementor_template_type','wp-page'),(5502,7107,'_elementor_version','3.15.3'),(5503,7107,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5504,7107,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5505,7107,'_elementor_pro_version','3.15.0'),(5507,7108,'_wp_page_template','default'),(5508,7108,'_elementor_edit_mode','builder'),(5509,7108,'_elementor_template_type','wp-page'),(5510,7108,'_elementor_version','3.15.3'),(5511,7108,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5512,7108,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5513,7108,'_elementor_pro_version','3.15.0'),(5515,7109,'_wp_page_template','default'),(5516,7109,'_elementor_edit_mode','builder'),(5517,7109,'_elementor_template_type','wp-page'),(5518,7109,'_elementor_version','3.15.3'),(5519,7109,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5520,7109,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5521,7109,'_elementor_pro_version','3.15.0'),(5525,7110,'_wp_page_template','default'),(5526,7110,'_elementor_edit_mode','builder'),(5527,7110,'_elementor_template_type','wp-page'),(5528,7110,'_elementor_version','3.15.3'),(5529,7110,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5530,7110,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5531,7110,'_elementor_pro_version','3.15.0'),(5533,7111,'_wp_page_template','default'),(5534,7111,'_elementor_edit_mode','builder'),(5535,7111,'_elementor_template_type','wp-page'),(5536,7111,'_elementor_version','3.15.3'),(5537,7111,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5538,7111,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5539,7111,'_elementor_pro_version','3.15.0'),(5541,7112,'_wp_page_template','default'),(5542,7112,'_elementor_edit_mode','builder'),(5543,7112,'_elementor_template_type','wp-page'),(5544,7112,'_elementor_version','3.15.3'),(5545,7112,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5546,7112,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(5547,7112,'_elementor_pro_version','3.15.0'),(5551,7113,'_elementor_template_type','wp-page'),(5552,7113,'_elementor_version','3.15.3'),(5553,7113,'_elementor_edit_mode','builder'),(5554,7113,'_wp_page_template','default'),(5555,7113,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5556,7113,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5557,7113,'_elementor_pro_version','3.15.0'),(5558,7114,'_elementor_template_type','wp-page'),(5559,7114,'_elementor_version','3.15.3'),(5560,7114,'_elementor_edit_mode','builder'),(5561,7114,'_wp_page_template','default'),(5562,7114,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdeb3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"bbbeb82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"f475d9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5124622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"6424e4a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a3f814\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"705a55c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"6d661d7\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5563,7114,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5564,7114,'_elementor_pro_version','3.15.0'),(5565,7115,'_elementor_template_type','wp-page'),(5566,7115,'_elementor_version','3.15.3'),(5567,7115,'_elementor_edit_mode','builder'),(5568,7115,'_wp_page_template','default'),(5569,7115,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5570,7115,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5571,7115,'_elementor_pro_version','3.15.0'),(5573,7116,'_elementor_template_type','wp-page'),(5574,7116,'_elementor_version','3.15.3'),(5575,7116,'_elementor_edit_mode','builder'),(5576,7116,'_wp_page_template','default'),(5577,7116,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5578,7116,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5579,7116,'_elementor_pro_version','3.15.0'),(5580,7117,'_elementor_template_type','wp-page'),(5581,7117,'_elementor_version','3.15.3'),(5582,7117,'_elementor_edit_mode','builder'),(5583,7117,'_wp_page_template','default'),(5584,7117,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5585,7117,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5586,7117,'_elementor_pro_version','3.15.0'),(5587,7118,'_elementor_template_type','wp-page'),(5588,7118,'_elementor_version','3.15.3'),(5589,7118,'_elementor_edit_mode','builder'),(5590,7118,'_wp_page_template','default'),(5591,7118,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5592,7118,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(5593,7118,'_elementor_pro_version','3.15.0'),(5596,7119,'_wp_page_template','default'),(5597,7119,'_elementor_edit_mode','builder'),(5598,7119,'_elementor_template_type','wp-page'),(5599,7119,'_elementor_version','3.15.3'),(5600,7119,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5601,7119,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(5602,7119,'_elementor_pro_version','3.15.0'),(5604,7120,'_wp_page_template','default'),(5605,7120,'_elementor_edit_mode','builder'),(5606,7120,'_elementor_template_type','wp-page'),(5607,7120,'_elementor_version','3.15.3'),(5608,7120,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5609,7120,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(5610,7120,'_elementor_pro_version','3.15.0'),(5612,7121,'_wp_page_template','default'),(5613,7121,'_elementor_edit_mode','builder'),(5614,7121,'_elementor_template_type','wp-page'),(5615,7121,'_elementor_version','3.15.3'),(5616,7121,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5617,7121,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(5618,7121,'_elementor_pro_version','3.15.0'),(5621,7122,'_wp_page_template','default'),(5622,7122,'_elementor_edit_mode','builder'),(5623,7122,'_elementor_template_type','wp-page'),(5624,7122,'_elementor_version','3.15.3'),(5625,7122,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5626,7122,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(5627,7122,'_elementor_pro_version','3.15.0'),(5628,7123,'_wp_page_template','default'),(5629,7123,'_elementor_edit_mode','builder'),(5630,7123,'_elementor_template_type','wp-page'),(5631,7123,'_elementor_version','3.15.3'),(5632,7123,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5633,7123,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(5634,7123,'_elementor_pro_version','3.15.0'),(5635,7124,'_wp_page_template','default'),(5636,7124,'_elementor_edit_mode','builder'),(5637,7124,'_elementor_template_type','wp-page'),(5638,7124,'_elementor_version','3.15.3'),(5639,7124,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5640,7124,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(5641,7124,'_elementor_pro_version','3.15.0'),(5661,7127,'_wp_page_template','default'),(5662,7127,'_elementor_edit_mode','builder'),(5663,7127,'_elementor_template_type','wp-page'),(5664,7127,'_elementor_version','3.15.3'),(5665,7127,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5666,7127,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(5667,7127,'_elementor_pro_version','3.15.0'),(5669,7128,'_wp_page_template','default'),(5670,7128,'_elementor_edit_mode','builder'),(5671,7128,'_elementor_template_type','wp-page'),(5672,7128,'_elementor_version','3.15.3'),(5673,7128,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5674,7128,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(5675,7128,'_elementor_pro_version','3.15.0'),(5677,7129,'_wp_page_template','default'),(5678,7129,'_elementor_edit_mode','builder'),(5679,7129,'_elementor_template_type','wp-page'),(5680,7129,'_elementor_version','3.15.3'),(5681,7129,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5682,7129,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(5683,7129,'_elementor_pro_version','3.15.0'),(5687,7130,'_wp_page_template','default'),(5688,7130,'_elementor_edit_mode','builder'),(5689,7130,'_elementor_template_type','wp-page'),(5690,7130,'_elementor_version','3.15.3'),(5691,7130,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5692,7130,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(5693,7130,'_elementor_pro_version','3.15.0'),(5695,7131,'_wp_page_template','default'),(5696,7131,'_elementor_edit_mode','builder'),(5697,7131,'_elementor_template_type','wp-page'),(5698,7131,'_elementor_version','3.15.3'),(5699,7131,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5700,7131,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(5701,7131,'_elementor_pro_version','3.15.0'),(5703,7132,'_wp_page_template','default'),(5704,7132,'_elementor_edit_mode','builder'),(5705,7132,'_elementor_template_type','wp-page'),(5706,7132,'_elementor_version','3.15.3'),(5707,7132,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5708,7132,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(5709,7132,'_elementor_pro_version','3.15.0'),(5714,7133,'_wp_page_template','default'),(5715,7133,'_elementor_edit_mode','builder'),(5716,7133,'_elementor_template_type','wp-page'),(5717,7133,'_elementor_version','3.15.3'),(5718,7133,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5719,7133,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(5720,7133,'_elementor_pro_version','3.15.0'),(5722,7134,'_wp_page_template','default'),(5723,7134,'_elementor_edit_mode','builder'),(5724,7134,'_elementor_template_type','wp-page'),(5725,7134,'_elementor_version','3.15.3'),(5726,7134,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5727,7134,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(5728,7134,'_elementor_pro_version','3.15.0'),(5730,7135,'_wp_page_template','default'),(5731,7135,'_elementor_edit_mode','builder'),(5732,7135,'_elementor_template_type','wp-page'),(5733,7135,'_elementor_version','3.15.3');
INSERT INTO `wpsl_postmeta` VALUES (5734,7135,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5735,7135,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(5736,7135,'_elementor_pro_version','3.15.0'),(5740,7136,'_wp_page_template','default'),(5741,7136,'_elementor_edit_mode','builder'),(5742,7136,'_elementor_template_type','wp-page'),(5743,7136,'_elementor_version','3.15.3'),(5744,7136,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5745,7136,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(5746,7136,'_elementor_pro_version','3.15.0'),(5748,7137,'_wp_page_template','default'),(5749,7137,'_elementor_edit_mode','builder'),(5750,7137,'_elementor_template_type','wp-page'),(5751,7137,'_elementor_version','3.15.3'),(5752,7137,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5753,7137,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(5754,7137,'_elementor_pro_version','3.15.0'),(5756,7138,'_wp_page_template','default'),(5757,7138,'_elementor_edit_mode','builder'),(5758,7138,'_elementor_template_type','wp-page'),(5759,7138,'_elementor_version','3.15.3'),(5760,7138,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5761,7138,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(5762,7138,'_elementor_pro_version','3.15.0'),(5766,7139,'_wp_page_template','elementor_theme'),(5767,7139,'_elementor_edit_mode','builder'),(5768,7139,'_elementor_template_type','wp-post'),(5769,7139,'_elementor_version','3.15.3'),(5770,7139,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5771,7139,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5772,7139,'_elementor_pro_version','3.15.0'),(5774,7140,'_wp_page_template','elementor_theme'),(5775,7140,'_elementor_edit_mode','builder'),(5776,7140,'_elementor_template_type','wp-post'),(5777,7140,'_elementor_version','3.15.3'),(5778,7140,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0000FF\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5779,7140,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5780,7140,'_elementor_pro_version','3.15.0'),(5782,7141,'_wp_page_template','elementor_theme'),(5783,7141,'_elementor_edit_mode','builder'),(5784,7141,'_elementor_template_type','wp-post'),(5785,7141,'_elementor_version','3.15.3'),(5786,7141,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5787,7141,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5788,7141,'_elementor_pro_version','3.15.0'),(5792,7142,'_wp_page_template','elementor_theme'),(5793,7142,'_elementor_edit_mode','builder'),(5794,7142,'_elementor_template_type','wp-post'),(5795,7142,'_elementor_version','3.15.3'),(5796,7142,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5797,7142,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5798,7142,'_elementor_pro_version','3.15.0'),(5800,7143,'_wp_page_template','elementor_theme'),(5801,7143,'_elementor_edit_mode','builder'),(5802,7143,'_elementor_template_type','wp-post'),(5803,7143,'_elementor_version','3.15.3'),(5804,7143,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0C0C8E\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5805,7143,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5806,7143,'_elementor_pro_version','3.15.0'),(5808,7144,'_wp_page_template','elementor_theme'),(5809,7144,'_elementor_edit_mode','builder'),(5810,7144,'_elementor_template_type','wp-post'),(5811,7144,'_elementor_version','3.15.3'),(5812,7144,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5813,7144,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5814,7144,'_elementor_pro_version','3.15.0'),(5818,7145,'_wp_page_template','elementor_theme'),(5819,7145,'_elementor_edit_mode','builder'),(5820,7145,'_elementor_template_type','wp-post'),(5821,7145,'_elementor_version','3.15.3'),(5822,7145,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5823,7145,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5824,7145,'_elementor_pro_version','3.15.0'),(5826,7146,'_wp_page_template','elementor_theme'),(5827,7146,'_elementor_edit_mode','builder'),(5828,7146,'_elementor_template_type','wp-post'),(5829,7146,'_elementor_version','3.15.3'),(5830,7146,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">Esigo.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5831,7146,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5832,7146,'_elementor_pro_version','3.15.0'),(5834,7147,'_wp_page_template','elementor_theme'),(5835,7147,'_elementor_edit_mode','builder'),(5836,7147,'_elementor_template_type','wp-post'),(5837,7147,'_elementor_version','3.15.3'),(5838,7147,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5839,7147,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5840,7147,'_elementor_pro_version','3.15.0'),(5857,7151,'_wp_page_template','elementor_theme'),(5858,7151,'_elementor_edit_mode','builder'),(5859,7151,'_elementor_template_type','wp-post'),(5860,7151,'_elementor_version','3.15.3'),(5861,7151,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5862,7151,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5863,7151,'_elementor_pro_version','3.15.0'),(5865,7152,'_wp_page_template','elementor_theme'),(5866,7152,'_elementor_edit_mode','builder'),(5867,7152,'_elementor_template_type','wp-post'),(5868,7152,'_elementor_version','3.15.3'),(5869,7152,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5870,7152,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5871,7152,'_elementor_pro_version','3.15.0'),(5873,7153,'_wp_page_template','elementor_theme'),(5874,7153,'_elementor_edit_mode','builder'),(5875,7153,'_elementor_template_type','wp-post'),(5876,7153,'_elementor_version','3.15.3'),(5877,7153,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5878,7153,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5879,7153,'_elementor_pro_version','3.15.0'),(5883,7154,'_elementor_edit_mode','builder'),(5884,7154,'_elementor_template_type','wp-page'),(5885,7154,'_elementor_version','3.15.3'),(5886,7154,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5887,7154,'_wp_page_template','default'),(5888,7154,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5889,7154,'_elementor_pro_version','3.15.0'),(5891,7155,'_elementor_edit_mode','builder'),(5892,7155,'_elementor_template_type','wp-page'),(5893,7155,'_elementor_version','3.15.3'),(5894,7155,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27556c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d963d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5ae9899\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"317bcd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"aab4592\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Find Out Latest News  <br> and Articles\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"192bac2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"63e0bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06eedfe\",\"elType\":\"widget\",\"settings\":{\"post_item\":\"3\",\"show_word\":15,\"autoplayTimeout\":\"5000\",\"columns\":\"3\",\"smartSpeed\":\"600\"},\"elements\":[],\"widgetType\":\"blog-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5895,7155,'_wp_page_template','default'),(5896,7155,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5897,7155,'_elementor_pro_version','3.15.0'),(5899,7156,'_elementor_edit_mode','builder'),(5900,7156,'_elementor_template_type','wp-page'),(5901,7156,'_elementor_version','3.15.3'),(5902,7156,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false}]'),(5903,7156,'_wp_page_template','default'),(5904,7156,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";}}'),(5905,7156,'_elementor_pro_version','3.15.0'),(5911,7158,'_elementor_edit_mode','builder'),(5912,7158,'_elementor_template_type','loop-item'),(5913,7158,'_elementor_version','3.15.3'),(5914,7158,'_elementor_pro_version','3.15.0'),(5915,7158,'_elementor_data','[{\"id\":\"388d37f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"73a7798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f64d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Read More\",\"__dynamic__\":{\"bg_image\":\"[elementor-tag id=\\\"aa67520\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%7D\\\"]\",\"title\":\"[elementor-tag id=\\\"ca200b1\\\" name=\\\"post-title\\\" settings=\\\"%7B%7D\\\"]\",\"description\":\"[elementor-tag id=\\\"0d00ada\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"8390d31\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22url_article%22%7D\\\"]\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_hover_text_color\":\"#FFFFFF\",\"button_hover_background_color\":\"#004699\",\"button_hover_border_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),(5916,7158,'_elementor_page_assets','a:0:{}'),(5917,7158,'_wp_page_template','default'),(5919,7159,'_elementor_edit_mode','builder'),(5920,7159,'_elementor_template_type','loop-item'),(5921,7159,'_elementor_version','3.15.3'),(5922,7159,'_elementor_pro_version','3.15.0'),(5923,7159,'_elementor_data','[{\"id\":\"388d37f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"73a7798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f64d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Read More\",\"__dynamic__\":{\"bg_image\":\"[elementor-tag id=\\\"aa67520\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%7D\\\"]\",\"title\":\"[elementor-tag id=\\\"ca200b1\\\" name=\\\"post-title\\\" settings=\\\"%7B%7D\\\"]\",\"description\":\"[elementor-tag id=\\\"0d00ada\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"c883667\\\" name=\\\"post-url\\\" settings=\\\"%7B%7D\\\"]\"},\"button_hover_text_color\":\"#FFFFFF\",\"button_hover_background_color\":\"#004699\",\"button_hover_border_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),(5924,7159,'_elementor_page_assets','a:0:{}'),(5925,7159,'_wp_page_template','default'),(5929,6883,'_elementor_edit_mode','builder'),(5930,6883,'_elementor_template_type','wp-post'),(5931,6883,'_elementor_version','3.15.3'),(5932,6883,'_elementor_pro_version','3.15.0'),(5935,7160,'_thumbnail_id','6885'),(5936,7160,'_elementor_edit_mode','builder'),(5937,7160,'_elementor_template_type','wp-post'),(5938,7160,'_elementor_version','3.15.3'),(5939,7160,'_elementor_pro_version','3.15.0'),(5940,7161,'_thumbnail_id','6885'),(5941,7161,'_elementor_edit_mode','builder'),(5942,7161,'_elementor_template_type','wp-post'),(5943,7161,'_elementor_version','3.15.3'),(5944,7161,'_elementor_pro_version','3.15.0'),(5945,6883,'_wp_page_template','default'),(5946,6883,'_elementor_data','[{\"id\":\"6779484\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7b87472\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"de14f9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.<\\/p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9f3ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1833f5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29d34d4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/www.channelasia.tech\\/article\\/671033\\/asean-embraces-managed-services-expect-channel-m-rise\\/ \",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5947,7162,'_thumbnail_id','6885'),(5948,7162,'_elementor_edit_mode','builder'),(5949,7162,'_elementor_template_type','wp-post'),(5950,7162,'_elementor_version','3.15.3'),(5951,7162,'_elementor_pro_version','3.15.0'),(5952,7162,'_wp_page_template','default'),(5953,7162,'_elementor_data','[{\"id\":\"6779484\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7b87472\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"de14f9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.<\\/p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5954,6883,'_elementor_page_assets','a:0:{}'),(5959,7163,'_thumbnail_id','6885'),(5960,7163,'_elementor_edit_mode','builder'),(5961,7163,'_elementor_template_type','wp-post'),(5962,7163,'_elementor_version','3.15.3'),(5963,7163,'_elementor_pro_version','3.15.0'),(5964,7163,'_wp_page_template','default'),(5965,7163,'_elementor_data','[{\"id\":\"6779484\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7b87472\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"de14f9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.<\\/p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5966,7163,'_elementor_page_assets','a:0:{}'),(5968,7164,'_thumbnail_id','6885'),(5969,7164,'_elementor_edit_mode','builder'),(5970,7164,'_elementor_template_type','wp-post'),(5971,7164,'_elementor_version','3.15.3'),(5972,7164,'_elementor_pro_version','3.15.0'),(5973,7164,'_wp_page_template','default'),(5974,7164,'_elementor_data','[{\"id\":\"6779484\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7b87472\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"de14f9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.<\\/p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5975,7164,'_elementor_page_assets','a:0:{}'),(5977,7165,'_thumbnail_id','6885'),(5978,7165,'_elementor_edit_mode','builder'),(5979,7165,'_elementor_template_type','wp-post'),(5980,7165,'_elementor_version','3.15.3'),(5981,7165,'_elementor_pro_version','3.15.0'),(5982,7165,'_wp_page_template','default'),(5983,7165,'_elementor_data','[{\"id\":\"6779484\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7b87472\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"de14f9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.<\\/p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9f3ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1833f5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29d34d4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/www.channelasia.tech\\/article\\/671033\\/asean-embraces-managed-services-expect-channel-m-rise\\/ \",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5984,7165,'_elementor_page_assets','a:0:{}'),(5986,6883,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}'),(5988,6911,'_elementor_edit_mode','builder'),(5989,6911,'_elementor_template_type','wp-post'),(5990,6911,'_elementor_version','3.15.3'),(5991,6911,'_elementor_pro_version','3.15.0'),(5994,7166,'_thumbnail_id','6887'),(5995,7166,'_elementor_edit_mode','builder'),(5996,7166,'_elementor_template_type','wp-post'),(5997,7166,'_elementor_version','3.15.3'),(5998,7166,'_elementor_pro_version','3.15.0'),(5999,7167,'_thumbnail_id','6887'),(6000,7167,'_elementor_edit_mode','builder'),(6001,7167,'_elementor_template_type','wp-post'),(6002,7167,'_elementor_version','3.15.3'),(6003,7167,'_elementor_pro_version','3.15.0'),(6004,6911,'_wp_page_template','default'),(6005,6911,'_elementor_data','[{\"id\":\"865cbd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"567e212\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a23a145\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Building out managed services capabilities in response to evolving customer buying patterns ranks as a leading priority for channel partners across Southeast Asia, as the ecosystem embraces subscription-based selling.<\\/p><p>According to EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- growing annuity revenue currently stands tall as the no.1 strategic objective for value-added resellers, system integrators and solution providers\\u00a0in\\u00a0the\\u00a0region.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816e226\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8e85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b20201f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/www.channelasia.tech\\/article\\/692441\\/managed-services-now-top-partner-priority-asean\\/ \",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(6006,7168,'_thumbnail_id','6887'),(6007,7168,'_elementor_edit_mode','builder'),(6008,7168,'_elementor_template_type','wp-post'),(6009,7168,'_elementor_version','3.15.3'),(6010,7168,'_elementor_pro_version','3.15.0'),(6011,7168,'_wp_page_template','default'),(6012,7168,'_elementor_data','[{\"id\":\"865cbd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"567e212\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a23a145\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Building out managed services capabilities in response to evolving customer buying patterns ranks as a leading priority for channel partners across Southeast Asia, as the ecosystem embraces subscription-based selling.<\\/p><p>According to EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- growing annuity revenue currently stands tall as the no.1 strategic objective for value-added resellers, system integrators and solution providers\\u00a0in\\u00a0the\\u00a0region.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816e226\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8e85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b20201f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/www.channelasia.tech\\/article\\/692441\\/managed-services-now-top-partner-priority-asean\\/ \",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(6013,6911,'_elementor_page_assets','a:0:{}'),(6014,6911,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}'),(6016,6917,'_elementor_edit_mode','builder'),(6017,6917,'_elementor_template_type','wp-post'),(6018,6917,'_elementor_version','3.15.3'),(6019,6917,'_elementor_pro_version','3.15.0'),(6022,7169,'_thumbnail_id','6886'),(6023,7169,'_elementor_edit_mode','builder'),(6024,7169,'_elementor_template_type','wp-post'),(6025,7169,'_elementor_version','3.15.3'),(6026,7169,'_elementor_pro_version','3.15.0'),(6027,7170,'_thumbnail_id','6886'),(6028,7170,'_elementor_edit_mode','builder'),(6029,7170,'_elementor_template_type','wp-post'),(6030,7170,'_elementor_version','3.15.3'),(6031,7170,'_elementor_pro_version','3.15.0'),(6032,6917,'_wp_page_template','default'),(6033,6917,'_elementor_data','[{\"id\":\"eb5db21\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4da1dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0a5561a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19, with skills shortages and the ease of migration, along with organisational-driven initiatives now the top three drivers for organisations considering managed ICT services.<\\/p><p>\\u201cThe COVID-19 pandemic not only has accelerated managed service adoption in ASEAN, including the SMB [small- to medium-sized business] segment, but also changed enterprises\\u2019 buying behavior while considering new ICT solutions,\\u201d said Alfie Amir, principal analyst at industry research firm GlobalData. \\u201cScalability, cost-savings and product lifecycle are no longer the top drivers for managed\\u00a0services.\\u201d<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e572ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01072cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"241084d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/ \",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(6034,7171,'_thumbnail_id','6886'),(6035,7171,'_elementor_edit_mode','builder'),(6036,7171,'_elementor_template_type','wp-post'),(6037,7171,'_elementor_version','3.15.3'),(6038,7171,'_elementor_pro_version','3.15.0'),(6039,7171,'_wp_page_template','default'),(6040,7171,'_elementor_data','[{\"id\":\"eb5db21\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4da1dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0a5561a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19, with skills shortages and the ease of migration, along with organisational-driven initiatives now the top three drivers for organisations considering managed ICT services.<\\/p><p>\\u201cThe COVID-19 pandemic not only has accelerated managed service adoption in ASEAN, including the SMB [small- to medium-sized business] segment, but also changed enterprises\\u2019 buying behavior while considering new ICT solutions,\\u201d said Alfie Amir, principal analyst at industry research firm GlobalData. \\u201cScalability, cost-savings and product lifecycle are no longer the top drivers for managed\\u00a0services.\\u201d<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e572ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01072cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"241084d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/ \",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(6041,6917,'_elementor_page_assets','a:0:{}'),(6042,6917,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}'),(6043,6923,'_elementor_edit_mode','builder'),(6044,6923,'_elementor_template_type','wp-post'),(6045,6923,'_elementor_version','3.15.3'),(6046,6923,'_elementor_pro_version','3.15.0'),(6050,7172,'_thumbnail_id','6884'),(6051,7172,'_elementor_edit_mode','builder'),(6052,7172,'_elementor_template_type','wp-post'),(6053,7172,'_elementor_version','3.15.3'),(6054,7172,'_elementor_pro_version','3.15.0'),(6055,7173,'_thumbnail_id','6884'),(6056,7173,'_elementor_edit_mode','builder'),(6057,7173,'_elementor_template_type','wp-post'),(6058,7173,'_elementor_version','3.15.3'),(6059,7173,'_elementor_pro_version','3.15.0'),(6060,6923,'_wp_page_template','default'),(6061,6923,'_elementor_data','[{\"id\":\"5dbb1b9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"82904a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13e0608\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Operating in the cloud has many benefits for organizations, including:<\\/p><p>- Increased efficiency in operations and management<br \\/>- Better support and access for a distributed workforce<br \\/>- Integration with the IT tech stack<br \\/>- Reduced costs<\\/p><p>However, even as many businesses rush to adopt cloud computing processes, it is not an easy initiative. Cloud migration introduces its own challenges. Whether you are looking to take advantage of cloud infrastructure, platforms, or software services, use these solutions to help you navigate a successful cloud migration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"97854fe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6987eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c04d4e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(6062,7174,'_thumbnail_id','6884'),(6063,7174,'_elementor_edit_mode','builder'),(6064,7174,'_elementor_template_type','wp-post'),(6065,7174,'_elementor_version','3.15.3'),(6066,7174,'_elementor_pro_version','3.15.0'),(6067,7174,'_wp_page_template','default'),(6068,7174,'_elementor_data','[{\"id\":\"5dbb1b9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"82904a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13e0608\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Operating in the cloud has many benefits for organizations, including:<\\/p><p>- Increased efficiency in operations and management<br \\/>- Better support and access for a distributed workforce<br \\/>- Integration with the IT tech stack<br \\/>- Reduced costs<\\/p><p>However, even as many businesses rush to adopt cloud computing processes, it is not an easy initiative. Cloud migration introduces its own challenges. Whether you are looking to take advantage of cloud infrastructure, platforms, or software services, use these solutions to help you navigate a successful cloud migration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"97854fe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6987eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c04d4e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(6069,6923,'_elementor_page_assets','a:0:{}'),(6070,6923,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}'),(6071,7175,'_wp_page_template','default'),(6072,7175,'_elementor_edit_mode','builder'),(6073,7175,'_elementor_template_type','wp-page'),(6074,7175,'_elementor_version','3.15.3'),(6075,7175,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6076,7175,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6077,7175,'_elementor_pro_version','3.15.0'),(6079,7176,'_wp_page_template','default'),(6080,7176,'_elementor_edit_mode','builder'),(6081,7176,'_elementor_template_type','wp-page'),(6082,7176,'_elementor_version','3.15.3'),(6083,7176,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\">Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<br \\/><br \\/>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br \\/><br \\/><br \\/>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<br \\/><br \\/><br \\/>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br \\/><br \\/><br \\/>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6084,7176,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6085,7176,'_elementor_pro_version','3.15.0'),(6087,7177,'_wp_page_template','default'),(6088,7177,'_elementor_edit_mode','builder'),(6089,7177,'_elementor_template_type','wp-page'),(6090,7177,'_elementor_version','3.15.3'),(6091,7177,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6092,7177,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6093,7177,'_elementor_pro_version','3.15.0'),(6098,7178,'_edit_lock','1700208532:1'),(6099,7178,'_edit_last','1'),(6100,7178,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(6101,7178,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(6102,7178,'_elementor_edit_mode','builder'),(6103,7178,'_elementor_template_type','wp-page'),(6104,7178,'_elementor_version','3.15.3'),(6105,7178,'_elementor_pro_version','3.15.0'),(6106,7178,'_wp_page_template','default'),(6107,7178,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p>\\n<h4>PERSONAL DATA<\\/h4>\\n<ol>\\n<li>As used in this Policy:<\\/li>\\n<\\/ol>\\n<p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p>\\n<p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p>\\n<ul>\\n<li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li>\\n<\\/ul>\\n<ol start=\\\"2\\\">\\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li>\\n<\\/ol>\\n<ol start=\\\"3\\\">\\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li>\\n<\\/ol>\\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"4\\\">\\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li>\\n<\\/ol>\\n<ol start=\\\"5\\\">\\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the<\\/li>\\n<\\/ol>\\n<ol start=\\\"6\\\">\\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li>\\n<\\/ol>\\n<ol start=\\\"7\\\">\\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li>\\n<\\/ol>\\n<h4>WITHDRAWING YOUR CONSENT<\\/h4>\\n<ol start=\\\"8\\\">\\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li>\\n<\\/ol>\\n<ol start=\\\"9\\\">\\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li>\\n<\\/ol>\\n<ol start=\\\"10\\\">\\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/li>\\n<\\/ol>\\n<ol start=\\\"11\\\">\\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li>\\n<\\/ol>\\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"12\\\">\\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li>\\n<\\/ol>\\n<ol start=\\\"13\\\">\\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li>\\n<\\/ol>\\n<ol start=\\\"14\\\">\\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li>\\n<\\/ol>\\n<h4>PROTECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"15\\\">\\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li>\\n<\\/ol>\\n<ol start=\\\"16\\\">\\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li>\\n<\\/ol>\\n<h4>ACCURACY OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"17\\\">\\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li>\\n<\\/ol>\\n<h4>RETENTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"18\\\">\\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li>\\n<\\/ol>\\n<ol start=\\\"19\\\">\\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li>\\n<\\/ol>\\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h4>\\n<ol start=\\\"20\\\">\\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li>\\n<\\/ol>\\n<h4>DATA PROTECTION OFFICER<\\/h4>\\n<ol start=\\\"21\\\">\\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li>\\n<\\/ol>\\n<p>Data Protection Officer<\\/p>\\n<p>ESIGO (Asia) Pte Ltd<\\/p>\\n<p>Tel: +65 6817 1978<\\/p>\\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h4>\\n<ol start=\\\"22\\\">\\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li>\\n<\\/ol>\\n<ol start=\\\"23\\\">\\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li>\\n<\\/ol>\\n<p>Effective date: 15 September 2023<\\/p>\\n<p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6108,7178,'_elementor_page_assets','a:0:{}'),(6109,7180,'_wp_page_template','default'),(6110,7180,'_elementor_edit_mode','builder'),(6111,7180,'_elementor_template_type','wp-page'),(6112,7180,'_elementor_version','3.15.3'),(6113,7180,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6114,7180,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6115,7180,'_elementor_pro_version','3.15.0'),(6117,7181,'_wp_page_template','default'),(6118,7181,'_elementor_edit_mode','builder'),(6119,7181,'_elementor_template_type','wp-page'),(6120,7181,'_elementor_version','3.15.3'),(6121,7181,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6122,7181,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6123,7181,'_elementor_pro_version','3.15.0'),(6125,7182,'_wp_page_template','default'),(6126,7182,'_elementor_edit_mode','builder'),(6127,7182,'_elementor_template_type','wp-page'),(6128,7182,'_elementor_version','3.15.3'),(6129,7182,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6130,7182,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6131,7182,'_elementor_pro_version','3.15.0'),(6134,7183,'_elementor_edit_mode','builder'),(6135,7183,'_elementor_template_type','wp-page'),(6136,7183,'_elementor_version','3.15.3'),(6137,7183,'_elementor_pro_version','3.15.0'),(6138,7183,'_wp_page_template','default'),(6139,7183,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p><p>\\u00a0<\\/p><h2>PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol><li>As used in this Policy:<\\/li><\\/ol><p>\\u00a0<\\/p><p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p><p>\\u00a0<\\/p><p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p><ul><li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li><\\/ul><p>\\u00a0<\\/p><ol start=\\\"2\\\"><li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"3\\\"><li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li><\\/ol><p>\\u00a0<\\/p><h2>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"4\\\"><li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"5\\\"><li>We may collect and use your personal data for any or all of the following purposes:<\\/li><\\/ol><p>\\u00a0<\\/p><ul><li>performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>verifying your identity;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<\\/li><\\/ul><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><ul><li>managing your relationship with us;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>processing payment or credit transactions;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>any other purposes for which you have provided the information;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>any other incidental business purposes related to or in connection with the<\\/li><\\/ul><p>\\u00a0<\\/p><ol start=\\\"6\\\"><li>We may disclose your personal data:<\\/li><\\/ol><p>\\u00a0<\\/p><ul><li>where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li><\\/ul><p>\\u00a0<\\/p><ol start=\\\"7\\\"><li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li><\\/ol><p>\\u00a0<\\/p><h2>WITHDRAWING YOUR CONSENT<\\/h2><p>\\u00a0<\\/p><ol start=\\\"8\\\"><li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"9\\\"><li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"10\\\"><li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods<\\/li><\\/ol><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/p><p>\\u00a0<\\/p><ol start=\\\"11\\\"><li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li><\\/ol><p>\\u00a0<\\/p><h2>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"12\\\"><li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"13\\\"><li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"14\\\"><li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li><\\/ol><p>\\u00a0<\\/p><h2>PROTECTION OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"15\\\"><li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"16\\\"><li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li><\\/ol><p>\\u00a0<\\/p><h2>ACCURACY OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"17\\\"><li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li><\\/ol><p>\\u00a0<\\/p><h2>RETENTION OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"18\\\"><li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li><\\/ol><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><ol start=\\\"19\\\"><li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li><\\/ol><p>\\u00a0<\\/p><h2>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h2><p>\\u00a0<\\/p><ol start=\\\"20\\\"><li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li><\\/ol><p>\\u00a0<\\/p><h2>DATA PROTECTION OFFICER<\\/h2><p>\\u00a0<\\/p><ol start=\\\"21\\\"><li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li><\\/ol><p>\\u00a0<\\/p><p>Data Protection Officer<\\/p><p>ESIGO (Asia) Pte Ltd<\\/p><p>Tel: +65 6817 1978<\\/p><p>\\u00a0<\\/p><h2>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h2><p>\\u00a0<\\/p><ol start=\\\"22\\\"><li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"23\\\"><li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li><\\/ol><p>\\u00a0<\\/p><p>Effective date: 15 September 2023<\\/p><p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6140,7183,'_elementor_page_assets','a:0:{}'),(6141,7184,'_elementor_edit_mode','builder'),(6142,7184,'_elementor_template_type','wp-page'),(6143,7184,'_elementor_version','3.15.3'),(6144,7184,'_elementor_pro_version','3.15.0'),(6145,7184,'_wp_page_template','default'),(6146,7184,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p><p>\\u00a0<\\/p><h2>PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol><li>As used in this Policy:<\\/li><\\/ol><p>\\u00a0<\\/p><p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p><p>\\u00a0<\\/p><p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p><ul><li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li><\\/ul><p>\\u00a0<\\/p><ol start=\\\"2\\\"><li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"3\\\"><li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li><\\/ol><p>\\u00a0<\\/p><h2>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"4\\\"><li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"5\\\"><li>We may collect and use your personal data for any or all of the following purposes:<\\/li><\\/ol><p>\\u00a0<\\/p><ul><li>performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>verifying your identity;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<\\/li><\\/ul><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><ul><li>managing your relationship with us;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>processing payment or credit transactions;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>any other purposes for which you have provided the information;<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>any other incidental business purposes related to or in connection with the<\\/li><\\/ul><p>\\u00a0<\\/p><ol start=\\\"6\\\"><li>We may disclose your personal data:<\\/li><\\/ol><p>\\u00a0<\\/p><ul><li>where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<\\/li><\\/ul><p>\\u00a0<\\/p><ul><li>to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li><\\/ul><p>\\u00a0<\\/p><ol start=\\\"7\\\"><li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li><\\/ol><p>\\u00a0<\\/p><h2>WITHDRAWING YOUR CONSENT<\\/h2><p>\\u00a0<\\/p><ol start=\\\"8\\\"><li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"9\\\"><li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"10\\\"><li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods<\\/li><\\/ol><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/p><p>\\u00a0<\\/p><ol start=\\\"11\\\"><li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li><\\/ol><p>\\u00a0<\\/p><h2>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"12\\\"><li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"13\\\"><li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"14\\\"><li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li><\\/ol><p>\\u00a0<\\/p><h2>PROTECTION OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"15\\\"><li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"16\\\"><li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li><\\/ol><p>\\u00a0<\\/p><h2>ACCURACY OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"17\\\"><li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li><\\/ol><p>\\u00a0<\\/p><h2>RETENTION OF PERSONAL DATA<\\/h2><p>\\u00a0<\\/p><ol start=\\\"18\\\"><li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li><\\/ol><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><ol start=\\\"19\\\"><li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li><\\/ol><p>\\u00a0<\\/p><h2>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h2><p>\\u00a0<\\/p><ol start=\\\"20\\\"><li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li><\\/ol><p>\\u00a0<\\/p><h2>DATA PROTECTION OFFICER<\\/h2><p>\\u00a0<\\/p><ol start=\\\"21\\\"><li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li><\\/ol><p>\\u00a0<\\/p><p>Data Protection Officer<\\/p><p>ESIGO (Asia) Pte Ltd<\\/p><p>Tel: +65 6817 1978<\\/p><p>\\u00a0<\\/p><h2>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h2><p>\\u00a0<\\/p><ol start=\\\"22\\\"><li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li><\\/ol><p>\\u00a0<\\/p><ol start=\\\"23\\\"><li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li><\\/ol><p>\\u00a0<\\/p><p>Effective date: 15 September 2023<\\/p><p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6147,7184,'_elementor_page_assets','a:0:{}'),(6148,7185,'_elementor_edit_mode','builder'),(6149,7185,'_elementor_template_type','wp-page'),(6150,7185,'_elementor_version','3.15.3'),(6151,7185,'_elementor_pro_version','3.15.0'),(6152,7185,'_wp_page_template','default'),(6153,7185,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p><h4>PERSONAL DATA<\\/h4><ol><li>As used in this Policy:<\\/li><\\/ol><p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p><p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p><ul><li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li><\\/ul><ol start=\\\"2\\\"><li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li><\\/ol><ol start=\\\"3\\\"><li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li><\\/ol><h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h4><ol start=\\\"4\\\"><li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li><\\/ol><ol start=\\\"5\\\"><li>We may collect and use your personal data for any or all of the following purposes:<br \\/>(a) performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<br \\/>(b) verifying your identity;<br \\/>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br \\/>(d) managing your relationship with us;<br \\/>(e) processing payment or credit transactions;<br \\/>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br \\/>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<br \\/>(h) any other purposes for which you have provided the information;<br \\/>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br \\/>(j) any other incidental business purposes related to or in connection with the<\\/li><\\/ol><ol start=\\\"6\\\"><li>We may disclose your personal data:<br \\/>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br \\/>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li><\\/ol><ol start=\\\"7\\\"><li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li><\\/ol><h4>WITHDRAWING YOUR CONSENT<\\/h4><ol start=\\\"8\\\"><li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li><\\/ol><ol start=\\\"9\\\"><li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li><\\/ol><ol start=\\\"10\\\"><li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/li><\\/ol><ol start=\\\"11\\\"><li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li><\\/ol><h2>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h2><ol start=\\\"12\\\"><li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li><\\/ol><ol start=\\\"13\\\"><li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li><\\/ol><ol start=\\\"14\\\"><li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li><\\/ol><h4>PROTECTION OF PERSONAL DATA<\\/h4><ol start=\\\"15\\\"><li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li><\\/ol><ol start=\\\"16\\\"><li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li><\\/ol><h4>ACCURACY OF PERSONAL DATA<\\/h4><ol start=\\\"17\\\"><li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li><\\/ol><h4>RETENTION OF PERSONAL DATA<\\/h4><ol start=\\\"18\\\"><li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li><\\/ol><ol start=\\\"19\\\"><li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li><\\/ol><h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h4><ol start=\\\"20\\\"><li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li><\\/ol><h4>DATA PROTECTION OFFICER<\\/h4><ol start=\\\"21\\\"><li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li><\\/ol><p>Data Protection Officer<\\/p><p>ESIGO (Asia) Pte Ltd<\\/p><p>Tel: +65 6817 1978<\\/p><h4>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h4><ol start=\\\"22\\\"><li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li><\\/ol><ol start=\\\"23\\\"><li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li><\\/ol><p>Effective date: 15 September 2023<\\/p><p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6154,7185,'_elementor_page_assets','a:0:{}'),(6174,7188,'_elementor_edit_mode','builder'),(6175,7188,'_elementor_template_type','wp-page'),(6176,7188,'_elementor_version','3.15.3'),(6177,7188,'_elementor_pro_version','3.15.0'),(6178,7188,'_wp_page_template','default'),(6179,7188,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p><h4>PERSONAL DATA<\\/h4><ol><li>As used in this Policy:<\\/li><\\/ol><p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p><p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p><ul><li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li><\\/ul><ol start=\\\"2\\\"><li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li><\\/ol><ol start=\\\"3\\\"><li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li><\\/ol><h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h4><ol start=\\\"4\\\"><li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li><\\/ol><ol start=\\\"5\\\"><li>We may collect and use your personal data for any or all of the following purposes:<br \\/>(a) performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<br \\/>(b) verifying your identity;<br \\/>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br \\/>(d) managing your relationship with us;<br \\/>(e) processing payment or credit transactions;<br \\/>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br \\/>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<br \\/>(h) any other purposes for which you have provided the information;<br \\/>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br \\/>(j) any other incidental business purposes related to or in connection with the<\\/li><\\/ol><ol start=\\\"6\\\"><li>We may disclose your personal data:<br \\/>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br \\/>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li><\\/ol><ol start=\\\"7\\\"><li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li><\\/ol><h4>WITHDRAWING YOUR CONSENT<\\/h4><ol start=\\\"8\\\"><li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li><\\/ol><ol start=\\\"9\\\"><li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li><\\/ol><ol start=\\\"10\\\"><li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/li><\\/ol><ol start=\\\"11\\\"><li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li><\\/ol><h2>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h2><ol start=\\\"12\\\"><li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li><\\/ol><ol start=\\\"13\\\"><li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li><\\/ol><ol start=\\\"14\\\"><li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li><\\/ol><h4>PROTECTION OF PERSONAL DATA<\\/h4><ol start=\\\"15\\\"><li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li><\\/ol><ol start=\\\"16\\\"><li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li><\\/ol><h4>ACCURACY OF PERSONAL DATA<\\/h4><ol start=\\\"17\\\"><li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li><\\/ol><h4>RETENTION OF PERSONAL DATA<\\/h4><ol start=\\\"18\\\"><li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li><\\/ol><ol start=\\\"19\\\"><li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li><\\/ol><h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h4><ol start=\\\"20\\\"><li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li><\\/ol><h4>DATA PROTECTION OFFICER<\\/h4><ol start=\\\"21\\\"><li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li><\\/ol><p>Data Protection Officer<\\/p><p>ESIGO (Asia) Pte Ltd<\\/p><p>Tel: +65 6817 1978<\\/p><h4>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h4><ol start=\\\"22\\\"><li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li><\\/ol><ol start=\\\"23\\\"><li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li><\\/ol><p>Effective date: 15 September 2023<\\/p><p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6180,7188,'_elementor_page_assets','a:0:{}'),(6181,7188,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(6183,7189,'_wp_page_template','elementor_theme'),(6184,7189,'_elementor_edit_mode','builder'),(6185,7189,'_elementor_template_type','wp-post'),(6186,7189,'_elementor_version','3.15.3'),(6187,7189,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6188,7189,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6189,7189,'_elementor_pro_version','3.15.0'),(6191,7190,'_wp_page_template','elementor_theme'),(6192,7190,'_elementor_edit_mode','builder'),(6193,7190,'_elementor_template_type','wp-post'),(6194,7190,'_elementor_version','3.15.3'),(6195,7190,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/ordainit.com\\/wp-theme\\/sorex\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6196,7190,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6197,7190,'_elementor_pro_version','3.15.0'),(6199,7191,'_wp_page_template','elementor_theme'),(6200,7191,'_elementor_edit_mode','builder'),(6201,7191,'_elementor_template_type','wp-post'),(6202,7191,'_elementor_version','3.15.3'),(6203,7191,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6204,7191,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6205,7191,'_elementor_pro_version','3.15.0'),(6305,7203,'_wp_page_template','default'),(6306,7203,'_elementor_edit_mode','builder'),(6307,7203,'_elementor_template_type','wp-page'),(6308,7203,'_elementor_version','3.15.3'),(6309,7203,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6310,7203,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6311,7203,'_elementor_pro_version','3.15.0'),(6312,7204,'_wp_page_template','default'),(6313,7204,'_elementor_edit_mode','builder'),(6314,7204,'_elementor_template_type','wp-page'),(6315,7204,'_elementor_version','3.15.3'),(6316,7204,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6317,7204,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6318,7204,'_elementor_pro_version','3.15.0'),(6319,7205,'_wp_page_template','default'),(6320,7205,'_elementor_edit_mode','builder'),(6321,7205,'_elementor_template_type','wp-page'),(6322,7205,'_elementor_version','3.15.3'),(6323,7205,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6324,7205,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6325,7205,'_elementor_pro_version','3.15.0'),(6357,7215,'_wp_page_template','default'),(6358,7215,'_elementor_edit_mode','builder'),(6359,7215,'_elementor_template_type','wp-page'),(6360,7215,'_elementor_version','3.15.3'),(6361,7215,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6362,7215,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6363,7215,'_elementor_pro_version','3.15.0'),(6365,7216,'_wp_page_template','default'),(6366,7216,'_elementor_edit_mode','builder'),(6367,7216,'_elementor_template_type','wp-page'),(6368,7216,'_elementor_version','3.15.3'),(6369,7216,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4990933\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#18191D\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1586b72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8263e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2df6ed1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99fe3ae\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Accounting and Bookkeeping\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"767b2d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":400,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5808989\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"IT Support and Consulting\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"880891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e1c8b46\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Marketing and Advertising\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_3.jpeg\",\"id\":4780,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"59bb1b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c476898\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Human Resources\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_4.jpeg\",\"id\":4781,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34b682d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"934c6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":600,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea76b5b\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"<span>Digital agency<\\/span> services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7968921\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7e3840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fb7009d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"279fc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"1d1471f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf4bfbe\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"98dfee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b01a87\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\"},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\"}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78547e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6989653\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"123079b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6370,7216,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6371,7216,'_elementor_pro_version','3.15.0'),(6373,7217,'_wp_page_template','default'),(6374,7217,'_elementor_edit_mode','builder'),(6375,7217,'_elementor_template_type','wp-page'),(6376,7217,'_elementor_version','3.15.3'),(6377,7217,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6378,7217,'_elementor_page_assets','a:1:{s:6:\"styles\";a:10:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";}}'),(6379,7217,'_elementor_pro_version','3.15.0'),(6385,7218,'_edit_lock','1695271831:1'),(6386,7219,'_wp_attached_file','2023/09/A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-e1695016175761.png'),(6387,7219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:308;s:4:\"file\";s:122:\"2023/09/A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-e1695016175761.png\";s:8:\"filesize\";i:407131;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:122:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-e1695016175761-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38357;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:122:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-e1695016175761-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25359;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:122:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-e1695016175761-354x308.png\";s:5:\"width\";i:354;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114750;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:122:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-e1695016175761-355x308.png\";s:5:\"width\";i:355;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114986;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:122:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-e1695016175761-738x308.png\";s:5:\"width\";i:738;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:221347;}}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:{}}}'),(6388,7219,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:768;s:6:\"height\";i:868;s:4:\"file\";s:99:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:107:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-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:22708;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:107:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-265x300.png\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63216;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:107:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117728;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:107:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93194;}s:29:\"bizmax-blog-single-thumb-orig\";a:5:{s:4:\"file\";s:107:\"A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193506;}}'),(6389,7219,'_wp_attachment_image_alt','A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868'),(6392,7218,'_thumbnail_id','7219'),(6393,7218,'_edit_last','1'),(6394,7218,'bizmax_wp_blog_options','a:3:{s:21:\"enable_featured_image\";s:1:\"1\";s:21:\"featured_image_upload\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:11:\"post_layout\";s:13:\"right-sidebar\";}'),(6395,7218,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(6396,7218,'_elementor_edit_mode','builder'),(6397,7218,'_elementor_template_type','wp-post'),(6398,7218,'_elementor_version','3.15.3'),(6399,7218,'_elementor_pro_version','3.15.0'),(6402,7221,'_thumbnail_id','7219'),(6403,7221,'_elementor_edit_mode','builder'),(6404,7221,'_elementor_template_type','wp-post'),(6405,7221,'_elementor_version','3.15.3'),(6406,7221,'_elementor_pro_version','3.15.0'),(6407,7222,'_thumbnail_id','7219'),(6408,7222,'_elementor_edit_mode','builder'),(6409,7222,'_elementor_template_type','wp-post'),(6410,7222,'_elementor_version','3.15.3'),(6411,7222,'_elementor_pro_version','3.15.0'),(6412,7218,'_wp_page_template','default'),(6413,7218,'_elementor_data','[{\"id\":\"f51fa79\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d693d40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9be0e97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2023\\/07\\/A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-906x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6414,7223,'_thumbnail_id','7219'),(6415,7223,'_elementor_edit_mode','builder'),(6416,7223,'_elementor_template_type','wp-post'),(6417,7223,'_elementor_version','3.15.3'),(6418,7223,'_elementor_pro_version','3.15.0'),(6419,7223,'_wp_page_template','default'),(6420,7223,'_elementor_data','[{\"id\":\"f51fa79\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d693d40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9be0e97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2023\\/07\\/A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-906x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6421,7218,'_elementor_page_assets','a:0:{}'),(6422,7218,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(6437,7225,'_thumbnail_id','7219'),(6438,7225,'_elementor_edit_mode','builder'),(6439,7225,'_elementor_template_type','wp-post'),(6440,7225,'_elementor_version','3.15.3'),(6441,7225,'_elementor_pro_version','3.15.0'),(6442,7225,'_wp_page_template','default'),(6443,7225,'_elementor_data','[{\"id\":\"f51fa79\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d693d40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9be0e97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2023\\/07\\/A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-906x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6444,7225,'_elementor_page_assets','a:0:{}'),(6445,7225,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(6447,7226,'_wp_page_template','default'),(6448,7226,'_elementor_edit_mode','builder'),(6449,7226,'_elementor_template_type','wp-page'),(6450,7226,'_elementor_version','3.15.3');
INSERT INTO `wpsl_postmeta` VALUES (6451,7226,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6452,7226,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6453,7226,'_elementor_pro_version','3.15.0'),(6454,7227,'_wp_page_template','default'),(6455,7227,'_elementor_edit_mode','builder'),(6456,7227,'_elementor_template_type','wp-page'),(6457,7227,'_elementor_version','3.15.3'),(6458,7227,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6459,7227,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6460,7227,'_elementor_pro_version','3.15.0'),(6461,7228,'_wp_page_template','default'),(6462,7228,'_elementor_edit_mode','builder'),(6463,7228,'_elementor_template_type','wp-page'),(6464,7228,'_elementor_version','3.15.3'),(6465,7228,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6466,7228,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6467,7228,'_elementor_pro_version','3.15.0'),(6471,7229,'_wp_page_template','default'),(6472,7229,'_elementor_edit_mode','builder'),(6473,7229,'_elementor_template_type','wp-page'),(6474,7229,'_elementor_version','3.15.3'),(6475,7229,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6476,7229,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6477,7229,'_elementor_pro_version','3.15.0'),(6478,7230,'_wp_page_template','default'),(6479,7230,'_elementor_edit_mode','builder'),(6480,7230,'_elementor_template_type','wp-page'),(6481,7230,'_elementor_version','3.15.3'),(6482,7230,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6483,7230,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6484,7230,'_elementor_pro_version','3.15.0'),(6485,7231,'_wp_page_template','default'),(6486,7231,'_elementor_edit_mode','builder'),(6487,7231,'_elementor_template_type','wp-page'),(6488,7231,'_elementor_version','3.15.3'),(6489,7231,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6490,7231,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6491,7231,'_elementor_pro_version','3.15.0'),(6496,7232,'_wp_page_template','default'),(6497,7232,'_elementor_edit_mode','builder'),(6498,7232,'_elementor_template_type','wp-page'),(6499,7232,'_elementor_version','3.15.3'),(6500,7232,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6501,7232,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6502,7232,'_elementor_pro_version','3.15.0'),(6504,7233,'_wp_page_template','default'),(6505,7233,'_elementor_edit_mode','builder'),(6506,7233,'_elementor_template_type','wp-page'),(6507,7233,'_elementor_version','3.15.3'),(6508,7233,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6509,7233,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6510,7233,'_elementor_pro_version','3.15.0'),(6512,7234,'_wp_page_template','default'),(6513,7234,'_elementor_edit_mode','builder'),(6514,7234,'_elementor_template_type','wp-page'),(6515,7234,'_elementor_version','3.15.3'),(6516,7234,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"current_query\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6517,7234,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6518,7234,'_elementor_pro_version','3.15.0'),(6526,7235,'_edit_lock','1695271703:1'),(6536,7237,'_wp_attached_file','2023/09/eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-e1695017339281.png'),(6537,7237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:767;s:6:\"height\";i:307;s:4:\"file\";s:121:\"2023/09/eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-e1695017339281.png\";s:8:\"filesize\";i:387298;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:121:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-e1695017339281-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29150;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:121:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-e1695017339281-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18094;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:121:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-e1695017339281-354x307.png\";s:5:\"width\";i:354;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55454;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:121:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-e1695017339281-355x307.png\";s:5:\"width\";i:355;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55689;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:121:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-e1695017339281-738x307.png\";s:5:\"width\";i:738;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105916;}}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:{}}}'),(6538,7237,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:768;s:6:\"height\";i:861;s:4:\"file\";s:98:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:106:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-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:26804;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:106:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-268x300.png\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75118;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:106:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138643;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:106:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107329;}s:29:\"bizmax-blog-single-thumb-orig\";a:5:{s:4:\"file\";s:106:\"eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181621;}}'),(6539,7237,'_wp_attachment_image_alt','Phone System Maintenance Exclusive Offer for New Customers'),(6542,7235,'_thumbnail_id','7237'),(6543,7235,'_edit_last','1'),(6544,7235,'bizmax_wp_blog_options','a:3:{s:21:\"enable_featured_image\";s:1:\"1\";s:21:\"featured_image_upload\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:11:\"post_layout\";s:13:\"right-sidebar\";}'),(6545,7235,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(6548,7235,'_elementor_edit_mode','builder'),(6549,7235,'_elementor_template_type','wp-post'),(6550,7235,'_elementor_version','3.15.3'),(6551,7235,'_elementor_pro_version','3.15.0'),(6554,7240,'_thumbnail_id','7237'),(6555,7240,'_elementor_edit_mode','builder'),(6556,7240,'_elementor_template_type','wp-post'),(6557,7240,'_elementor_version','3.15.3'),(6558,7240,'_elementor_pro_version','3.15.0'),(6559,7241,'_thumbnail_id','7237'),(6560,7241,'_elementor_edit_mode','builder'),(6561,7241,'_elementor_template_type','wp-post'),(6562,7241,'_elementor_version','3.15.3'),(6563,7241,'_elementor_pro_version','3.15.0'),(6564,7235,'_wp_page_template','default'),(6565,7235,'_elementor_data','[{\"id\":\"d85474d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"80cbb73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cf56dba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2023\\/07\\/eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6566,7242,'_thumbnail_id','7237'),(6567,7242,'_elementor_edit_mode','builder'),(6568,7242,'_elementor_template_type','wp-post'),(6569,7242,'_elementor_version','3.15.3'),(6570,7242,'_elementor_pro_version','3.15.0'),(6571,7242,'_wp_page_template','default'),(6572,7242,'_elementor_data','[{\"id\":\"d85474d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"80cbb73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cf56dba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2023\\/07\\/eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6573,7235,'_elementor_page_assets','a:0:{}'),(6574,7235,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(6575,7243,'_edit_lock','1695271726:1'),(6576,7244,'_wp_attached_file','2023/09/leapxpert_sleekflow-768x767-1-e1695017552519.png'),(6577,7244,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:307;s:4:\"file\";s:56:\"2023/09/leapxpert_sleekflow-768x767-1-e1695017552519.png\";s:8:\"filesize\";i:534326;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"leapxpert_sleekflow-768x767-1-e1695017552519-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40732;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"leapxpert_sleekflow-768x767-1-e1695017552519-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21985;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:56:\"leapxpert_sleekflow-768x767-1-e1695017552519-354x307.png\";s:5:\"width\";i:354;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89373;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:56:\"leapxpert_sleekflow-768x767-1-e1695017552519-355x307.png\";s:5:\"width\";i:355;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89575;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:56:\"leapxpert_sleekflow-768x767-1-e1695017552519-738x307.png\";s:5:\"width\";i:738;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201394;}}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:{}}}'),(6578,7244,'_wp_attachment_image_alt','Compliant Enterprise Messaging Solutions'),(6579,7244,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:768;s:6:\"height\";i:767;s:4:\"file\";s:33:\"leapxpert_sleekflow-768x767-1.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:41:\"leapxpert_sleekflow-768x767-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:28520;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:41:\"leapxpert_sleekflow-768x767-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:97936;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:41:\"leapxpert_sleekflow-768x767-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159221;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:41:\"leapxpert_sleekflow-768x767-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129646;}s:29:\"bizmax-blog-single-thumb-orig\";a:5:{s:4:\"file\";s:41:\"leapxpert_sleekflow-768x767-1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:277671;}}'),(6582,7243,'_thumbnail_id','7244'),(6583,7243,'_edit_last','1'),(6584,7243,'bizmax_wp_blog_options','a:3:{s:21:\"enable_featured_image\";s:1:\"1\";s:21:\"featured_image_upload\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:11:\"post_layout\";s:13:\"right-sidebar\";}'),(6585,7243,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(6588,7243,'_elementor_edit_mode','builder'),(6589,7243,'_elementor_template_type','wp-post'),(6590,7243,'_elementor_version','3.15.3'),(6591,7243,'_elementor_pro_version','3.15.0'),(6594,7246,'_thumbnail_id','7244'),(6595,7246,'_elementor_edit_mode','builder'),(6596,7246,'_elementor_template_type','wp-post'),(6597,7246,'_elementor_version','3.15.3'),(6598,7246,'_elementor_pro_version','3.15.0'),(6599,7247,'_thumbnail_id','7244'),(6600,7247,'_elementor_edit_mode','builder'),(6601,7247,'_elementor_template_type','wp-post'),(6602,7247,'_elementor_version','3.15.3'),(6603,7247,'_elementor_pro_version','3.15.0'),(6604,7243,'_wp_page_template','default'),(6605,7243,'_elementor_data','[{\"id\":\"369253a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c559fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed18d14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2022\\/08\\/leapxpert_sleekflow-1024x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6606,7248,'_thumbnail_id','7244'),(6607,7248,'_elementor_edit_mode','builder'),(6608,7248,'_elementor_template_type','wp-post'),(6609,7248,'_elementor_version','3.15.3'),(6610,7248,'_elementor_pro_version','3.15.0'),(6611,7248,'_wp_page_template','default'),(6612,7248,'_elementor_data','[{\"id\":\"369253a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c559fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed18d14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2022\\/08\\/leapxpert_sleekflow-1024x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6613,7243,'_elementor_page_assets','a:0:{}'),(6616,7249,'_edit_lock','1700120174:1'),(6618,7250,'_wp_attached_file','2023/09/News-and-Events-eDM-732x1024-1-e1695017729387.png'),(6619,7250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:732;s:6:\"height\";i:293;s:4:\"file\";s:57:\"2023/09/News-and-Events-eDM-732x1024-1-e1695017729387.png\";s:8:\"filesize\";i:692284;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"News-and-Events-eDM-732x1024-1-e1695017729387-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34589;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"News-and-Events-eDM-732x1024-1-e1695017729387-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17708;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:57:\"News-and-Events-eDM-732x1024-1-e1695017729387-354x293.png\";s:5:\"width\";i:354;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68802;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:57:\"News-and-Events-eDM-732x1024-1-e1695017729387-355x293.png\";s:5:\"width\";i:355;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68942;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:42:\"News-and-Events-eDM-732x1024-1-732x400.png\";s:5:\"width\";i:732;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:247664;}}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:{}}}'),(6620,7250,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:732;s:6:\"height\";i:1024;s:4:\"file\";s:34:\"News-and-Events-eDM-732x1024-1.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:42:\"News-and-Events-eDM-732x1024-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:34234;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:42:\"News-and-Events-eDM-732x1024-1-214x300.png\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83815;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:42:\"News-and-Events-eDM-732x1024-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:184229;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:42:\"News-and-Events-eDM-732x1024-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135024;}s:29:\"bizmax-blog-single-thumb-orig\";a:5:{s:4:\"file\";s:42:\"News-and-Events-eDM-732x1024-1-732x400.png\";s:5:\"width\";i:732;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:247664;}}'),(6621,7250,'_wp_attachment_image_alt','Stop Attacks At The Entry Point with IronScales'),(6624,7249,'_thumbnail_id','7250'),(6625,7249,'_edit_last','1'),(6626,7249,'bizmax_wp_blog_options','a:3:{s:21:\"enable_featured_image\";s:1:\"1\";s:21:\"featured_image_upload\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:11:\"post_layout\";s:13:\"right-sidebar\";}'),(6627,7249,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(6630,7249,'_elementor_edit_mode','builder'),(6631,7249,'_elementor_template_type','wp-post'),(6632,7249,'_elementor_version','3.15.3'),(6633,7249,'_elementor_pro_version','3.15.0'),(6636,7252,'_thumbnail_id','7250'),(6637,7252,'_elementor_edit_mode','builder'),(6638,7252,'_elementor_template_type','wp-post'),(6639,7252,'_elementor_version','3.15.3'),(6640,7252,'_elementor_pro_version','3.15.0'),(6641,7253,'_thumbnail_id','7250'),(6642,7253,'_elementor_edit_mode','builder'),(6643,7253,'_elementor_template_type','wp-post'),(6644,7253,'_elementor_version','3.15.3'),(6645,7253,'_elementor_pro_version','3.15.0'),(6646,7249,'_wp_page_template','default'),(6647,7249,'_elementor_data','[{\"id\":\"28ee490\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"48f65e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c46b75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2022\\/06\\/News-and-Events-eDM-732x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6648,7254,'_thumbnail_id','7250'),(6649,7254,'_elementor_edit_mode','builder'),(6650,7254,'_elementor_template_type','wp-post'),(6651,7254,'_elementor_version','3.15.3'),(6652,7254,'_elementor_pro_version','3.15.0'),(6653,7254,'_wp_page_template','default'),(6654,7254,'_elementor_data','[{\"id\":\"28ee490\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"48f65e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c46b75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2022\\/06\\/News-and-Events-eDM-732x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6655,7249,'_elementor_page_assets','a:0:{}'),(6656,7249,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(6657,7255,'_wp_page_template','default'),(6658,7255,'_elementor_edit_mode','builder'),(6659,7255,'_elementor_template_type','wp-page'),(6660,7255,'_elementor_version','3.15.3'),(6661,7255,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"current_query\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6662,7255,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6663,7255,'_elementor_pro_version','3.15.0'),(6664,7256,'_wp_page_template','default'),(6665,7256,'_elementor_edit_mode','builder'),(6666,7256,'_elementor_template_type','wp-page'),(6667,7256,'_elementor_version','3.15.3'),(6668,7256,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"current_query\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6669,7256,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6670,7256,'_elementor_pro_version','3.15.0'),(6671,7257,'_wp_page_template','default'),(6672,7257,'_elementor_edit_mode','builder'),(6673,7257,'_elementor_template_type','wp-page'),(6674,7257,'_elementor_version','3.15.3'),(6675,7257,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6676,7257,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6677,7257,'_elementor_pro_version','3.15.0'),(6683,7259,'_elementor_template_type','wp-page'),(6684,7259,'_elementor_version','3.15.3'),(6685,7259,'_elementor_edit_mode','builder'),(6686,7259,'_wp_page_template','default'),(6687,7259,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6688,7259,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(6689,7259,'_elementor_pro_version','3.15.0'),(6691,7260,'_elementor_template_type','wp-page'),(6692,7260,'_elementor_version','3.15.3'),(6693,7260,'_elementor_edit_mode','builder'),(6694,7260,'_wp_page_template','default'),(6695,7260,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6696,7260,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(6697,7260,'_elementor_pro_version','3.15.0'),(6699,7261,'_elementor_template_type','wp-page'),(6700,7261,'_elementor_version','3.15.3'),(6701,7261,'_elementor_edit_mode','builder'),(6702,7261,'_wp_page_template','default'),(6703,7261,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7258,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6704,7261,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(6705,7261,'_elementor_pro_version','3.15.0'),(6712,7262,'_wp_page_template','default'),(6713,7262,'_elementor_edit_mode','builder'),(6714,7262,'_elementor_template_type','wp-page'),(6715,7262,'_elementor_version','3.15.3'),(6716,7262,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6717,7262,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6718,7262,'_elementor_pro_version','3.15.0'),(6720,7263,'_wp_page_template','default'),(6721,7263,'_elementor_edit_mode','builder'),(6722,7263,'_elementor_template_type','wp-page'),(6723,7263,'_elementor_version','3.15.3'),(6724,7263,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7058,\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6725,7263,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6726,7263,'_elementor_pro_version','3.15.0'),(6728,7264,'_wp_page_template','default'),(6729,7264,'_elementor_edit_mode','builder'),(6730,7264,'_elementor_template_type','wp-page'),(6731,7264,'_elementor_version','3.15.3'),(6732,7264,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6733,7264,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6734,7264,'_elementor_pro_version','3.15.0'),(6737,7265,'_wp_page_template','default'),(6738,7265,'_elementor_edit_mode','builder'),(6739,7265,'_elementor_template_type','wp-page'),(6740,7265,'_elementor_version','3.15.3'),(6741,7265,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6742,7265,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6743,7265,'_elementor_pro_version','3.15.0'),(6744,7266,'_wp_page_template','default'),(6745,7266,'_elementor_edit_mode','builder'),(6746,7266,'_elementor_template_type','wp-page'),(6747,7266,'_elementor_version','3.15.3'),(6748,7266,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"contact-us-girl\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6749,7266,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6750,7266,'_elementor_pro_version','3.15.0'),(6751,7267,'_wp_page_template','default'),(6752,7267,'_elementor_edit_mode','builder'),(6753,7267,'_elementor_template_type','wp-page'),(6754,7267,'_elementor_version','3.15.3'),(6755,7267,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"contact-us\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6756,7267,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6757,7267,'_elementor_pro_version','3.15.0'),(6759,7268,'_wp_attached_file','2023/09/contact-us-girl-e1695018445851.png'),(6760,7268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2477;s:6:\"height\";i:3093;s:4:\"file\";s:42:\"2023/09/contact-us-girl-e1695018445851.png\";s:8:\"filesize\";i:6630266;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018445851-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69578;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"contact-us-girl-e1695018445851-820x1024.png\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:694027;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018445851-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25825;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018445851-768x959.png\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:611801;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"contact-us-girl-e1695018445851-1230x1536.png\";s:5:\"width\";i:1230;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1502473;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:44:\"contact-us-girl-e1695018445851-1640x2048.png\";s:5:\"width\";i:1640;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2542456;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018445851-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148259;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018445851-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114724;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018445851-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:262393;}}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:{}}}'),(6761,7269,'_wp_page_template','default'),(6762,7269,'_elementor_edit_mode','builder'),(6763,7269,'_elementor_template_type','wp-page'),(6764,7269,'_elementor_version','3.15.3'),(6765,7269,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"contact-us\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6766,7269,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6767,7269,'_elementor_pro_version','3.15.0'),(6768,7270,'_wp_page_template','default'),(6769,7270,'_elementor_edit_mode','builder'),(6770,7270,'_elementor_template_type','wp-page'),(6771,7270,'_elementor_version','3.15.3'),(6772,7270,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"contact-us\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6773,7270,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6774,7270,'_elementor_pro_version','3.15.0'),(6775,7271,'_wp_page_template','default'),(6776,7271,'_elementor_edit_mode','builder'),(6777,7271,'_elementor_template_type','wp-page'),(6778,7271,'_elementor_version','3.15.3'),(6779,7271,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6780,7271,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6781,7271,'_elementor_pro_version','3.15.0'),(6784,7268,'_wp_attachment_backup_sizes','a:20:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3525;s:6:\"height\";i:3490;s:4:\"file\";s:19:\"contact-us-girl.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:27:\"contact-us-girl-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21473;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:27:\"contact-us-girl-300x297.png\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67324;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:27:\"contact-us-girl-768x760.png\";s:5:\"width\";i:768;s:6:\"height\";i:760;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:376565;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:29:\"contact-us-girl-1024x1014.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1014;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:654811;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:29:\"contact-us-girl-1536x1521.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1521;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1426822;}s:14:\"2048x2048-orig\";a:5:{s:4:\"file\";s:29:\"contact-us-girl-2048x2028.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2028;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2453185;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:27:\"contact-us-girl-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127297;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:27:\"contact-us-girl-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89616;}s:29:\"bizmax-blog-single-thumb-orig\";a:5:{s:4:\"file\";s:27:\"contact-us-girl-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:195114;}s:18:\"full-1695018445851\";a:3:{s:5:\"width\";i:2479;s:6:\"height\";i:3489;s:4:\"file\";s:34:\"contact-us-girl-e1695018342385.png\";}s:23:\"thumbnail-1695018445851\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018342385-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25897;}s:20:\"medium-1695018445851\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018342385-213x300.png\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63698;}s:26:\"medium_large-1695018445851\";a:5:{s:4:\"file\";s:43:\"contact-us-girl-e1695018342385-768x1081.png\";s:5:\"width\";i:768;s:6:\"height\";i:1081;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:689489;}s:19:\"large-1695018445851\";a:5:{s:4:\"file\";s:43:\"contact-us-girl-e1695018342385-728x1024.png\";s:5:\"width\";i:728;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:621281;}s:23:\"1536x1536-1695018445851\";a:5:{s:4:\"file\";s:44:\"contact-us-girl-e1695018342385-1091x1536.png\";s:5:\"width\";i:1091;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1355837;}s:23:\"2048x2048-1695018445851\";a:5:{s:4:\"file\";s:44:\"contact-us-girl-e1695018342385-1455x2048.png\";s:5:\"width\";i:1455;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2317933;}s:31:\"bizmax-team-thumb-1695018445851\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018342385-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149495;}s:31:\"bizmax-blog-thumb-1695018445851\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018342385-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115451;}s:38:\"bizmax-blog-single-thumb-1695018445851\";a:5:{s:4:\"file\";s:42:\"contact-us-girl-e1695018342385-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269617;}}'),(6785,7272,'_wp_page_template','default'),(6786,7272,'_elementor_edit_mode','builder'),(6787,7272,'_elementor_template_type','wp-page'),(6788,7272,'_elementor_version','3.15.3'),(6789,7272,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6790,7272,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6791,7272,'_elementor_pro_version','3.15.0'),(6793,7273,'_wp_page_template','default'),(6794,7273,'_elementor_edit_mode','builder'),(6795,7273,'_elementor_template_type','wp-page'),(6796,7273,'_elementor_version','3.15.3'),(6797,7273,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6798,7273,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6799,7273,'_elementor_pro_version','3.15.0'),(6801,7274,'_wp_page_template','default'),(6802,7274,'_elementor_edit_mode','builder'),(6803,7274,'_elementor_template_type','wp-page'),(6804,7274,'_elementor_version','3.15.3'),(6805,7274,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-e1695018342385.png\",\"id\":7268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6806,7274,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6807,7274,'_elementor_pro_version','3.15.0'),(6811,7275,'_wp_page_template','default'),(6812,7275,'_elementor_edit_mode','builder'),(6813,7275,'_elementor_template_type','wp-page'),(6814,7275,'_elementor_version','3.15.3'),(6815,7275,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-e1695018342385.png\",\"id\":7268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6816,7275,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6817,7275,'_elementor_pro_version','3.15.0'),(6819,7276,'_wp_page_template','default'),(6820,7276,'_elementor_edit_mode','builder'),(6821,7276,'_elementor_template_type','wp-page'),(6822,7276,'_elementor_version','3.15.3'),(6823,7276,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-e1695018342385.png\",\"id\":7268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6824,7276,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6825,7276,'_elementor_pro_version','3.15.0'),(6827,7277,'_wp_page_template','default'),(6828,7277,'_elementor_edit_mode','builder'),(6829,7277,'_elementor_template_type','wp-page'),(6830,7277,'_elementor_version','3.15.3'),(6831,7277,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-e1695018445851.png\",\"id\":7268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6832,7277,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6833,7277,'_elementor_pro_version','3.15.0'),(6837,7278,'_wp_attached_file','2023/09/contact-us-girl-1-e1695023051270.png'),(6838,7278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2185;s:6:\"height\";i:3096;s:4:\"file\";s:44:\"2023/09/contact-us-girl-1-e1695023051270.png\";s:8:\"filesize\";i:6438953;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"contact-us-girl-1-e1695023051270-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64837;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"contact-us-girl-1-e1695023051270-723x1024.png\";s:5:\"width\";i:723;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:641378;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"contact-us-girl-1-e1695023051270-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27101;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"contact-us-girl-1-e1695023051270-768x1088.png\";s:5:\"width\";i:768;s:6:\"height\";i:1088;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:719535;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"contact-us-girl-1-e1695023051270-1084x1536.png\";s:5:\"width\";i:1084;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1393573;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:46:\"contact-us-girl-1-e1695023051270-1445x2048.png\";s:5:\"width\";i:1445;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2363104;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:44:\"contact-us-girl-1-e1695023051270-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154029;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:44:\"contact-us-girl-1-e1695023051270-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121241;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:44:\"contact-us-girl-1-e1695023051270-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272732;}}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:{}}}'),(6839,7278,'_wp_attachment_backup_sizes','a:10:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3525;s:6:\"height\";i:3490;s:4:\"file\";s:21:\"contact-us-girl-1.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:29:\"contact-us-girl-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:20632;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:29:\"contact-us-girl-1-300x297.png\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64270;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:29:\"contact-us-girl-1-768x760.png\";s:5:\"width\";i:768;s:6:\"height\";i:760;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:356847;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:31:\"contact-us-girl-1-1024x1014.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1014;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:619683;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:31:\"contact-us-girl-1-1536x1521.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1521;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1354873;}s:14:\"2048x2048-orig\";a:5:{s:4:\"file\";s:31:\"contact-us-girl-1-2048x2028.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2028;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2334268;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:29:\"contact-us-girl-1-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121397;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:29:\"contact-us-girl-1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85003;}s:29:\"bizmax-blog-single-thumb-orig\";a:5:{s:4:\"file\";s:29:\"contact-us-girl-1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185805;}}'),(6840,7278,'_wp_attachment_image_alt','contact-us-image'),(6841,7279,'_wp_page_template','default'),(6842,7279,'_elementor_edit_mode','builder'),(6843,7279,'_elementor_template_type','wp-page'),(6844,7279,'_elementor_version','3.15.3'),(6845,7279,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-e1695018445851.png\",\"id\":7268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6846,7279,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6847,7279,'_elementor_pro_version','3.15.0'),(6849,7280,'_wp_page_template','default'),(6850,7280,'_elementor_edit_mode','builder'),(6851,7280,'_elementor_template_type','wp-page'),(6852,7280,'_elementor_version','3.15.3'),(6853,7280,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-e1695018445851.png\",\"id\":7268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6854,7280,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6855,7280,'_elementor_pro_version','3.15.0'),(6857,7281,'_wp_page_template','default'),(6858,7281,'_elementor_edit_mode','builder'),(6859,7281,'_elementor_template_type','wp-page'),(6860,7281,'_elementor_version','3.15.3'),(6861,7281,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6862,7281,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(6863,7281,'_elementor_pro_version','3.15.0'),(6873,7283,'_wp_page_template','elementor_theme'),(6874,7283,'_elementor_edit_mode','builder'),(6875,7283,'_elementor_template_type','wp-post'),(6876,7283,'_elementor_version','3.15.3'),(6877,7283,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6878,7283,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6879,7283,'_elementor_pro_version','3.15.0'),(6881,7284,'_wp_page_template','elementor_theme'),(6882,7284,'_elementor_edit_mode','builder'),(6883,7284,'_elementor_template_type','wp-post'),(6884,7284,'_elementor_version','3.15.3'),(6885,7284,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#FEC63F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6886,7284,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6887,7284,'_elementor_pro_version','3.15.0'),(6889,7285,'_wp_page_template','elementor_theme'),(6890,7285,'_elementor_edit_mode','builder'),(6891,7285,'_elementor_template_type','wp-post'),(6892,7285,'_elementor_version','3.15.3'),(6893,7285,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6894,7285,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6895,7285,'_elementor_pro_version','3.15.0'),(6918,7288,'_elementor_edit_mode','builder'),(6919,7288,'_elementor_template_type','wp-page'),(6920,7288,'_elementor_version','3.15.3'),(6921,7288,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false}]'),(6922,7288,'_wp_page_template','default'),(6923,7288,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";}}'),(6924,7288,'_elementor_pro_version','3.15.0'),(6926,7289,'_elementor_edit_mode','builder'),(6927,7289,'_elementor_template_type','wp-page'),(6928,7289,'_elementor_version','3.15.3'),(6929,7289,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false}]'),(6930,7289,'_wp_page_template','default'),(6931,7289,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";}}'),(6932,7289,'_elementor_pro_version','3.15.0'),(6934,7290,'_elementor_edit_mode','builder'),(6935,7290,'_elementor_template_type','wp-page'),(6936,7290,'_elementor_version','3.15.3'),(6937,7290,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false}]'),(6938,7290,'_wp_page_template','default'),(6939,7290,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";}}'),(6940,7290,'_elementor_pro_version','3.15.0'),(6947,7291,'_elementor_edit_mode','builder'),(6948,7291,'_elementor_template_type','loop-item'),(6949,7291,'_elementor_version','3.15.3'),(6950,7291,'_elementor_pro_version','3.15.0'),(6951,7291,'_elementor_data','[{\"id\":\"388d37f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"73a7798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f64d16\",\"elType\":\"widget\",\"settings\":{\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Read More\",\"__dynamic__\":{\"bg_image\":\"[elementor-tag id=\\\"aa67520\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%7D\\\"]\",\"title\":\"[elementor-tag id=\\\"ca200b1\\\" name=\\\"post-title\\\" settings=\\\"%7B%7D\\\"]\",\"description\":\"[elementor-tag id=\\\"0d00ada\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"c883667\\\" name=\\\"post-url\\\" settings=\\\"%7B%7D\\\"]\"},\"button_hover_text_color\":\"#FFFFFF\",\"button_hover_background_color\":\"#004699\",\"button_hover_border_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),(6952,7291,'_elementor_page_assets','a:0:{}'),(6953,7291,'_wp_page_template','default'),(6954,7291,'_elementor_controls_usage','a:3:{s:14:\"call-to-action\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:4;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:4:{s:5:\"title\";i:1;s:11:\"description\";i:1;s:6:\"button\";i:1;s:4:\"link\";i:1;}s:18:\"section_main_image\";a:1:{s:8:\"bg_image\";i:1;}}s:5:\"style\";a:1:{s:12:\"button_style\";a:3:{s:23:\"button_hover_text_color\";i:1;s:29:\"button_hover_background_color\";i:1;s:25:\"button_hover_border_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(6956,7292,'_edit_lock','1696474516:1'),(6957,7292,'_edit_last','1'),(6958,7292,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(6959,7292,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(6960,7292,'_elementor_edit_mode','builder'),(6961,7292,'_elementor_template_type','wp-page'),(6962,7292,'_elementor_version','3.15.3'),(6963,7292,'_elementor_pro_version','3.15.0'),(6964,7294,'_elementor_edit_mode','builder'),(6965,7294,'_elementor_template_type','wp-page'),(6966,7294,'_elementor_version','3.15.3'),(6967,7294,'_elementor_pro_version','3.15.0'),(6968,7295,'_elementor_edit_mode','builder'),(6969,7295,'_elementor_template_type','wp-page'),(6970,7295,'_elementor_version','3.15.3'),(6971,7295,'_elementor_pro_version','3.15.0'),(6972,7292,'_wp_page_template','default'),(6973,7292,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4c16c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/customer-experience.jpg\",\"id\":7730,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6974,7296,'_elementor_edit_mode','builder'),(6975,7296,'_elementor_template_type','wp-page'),(6976,7296,'_elementor_version','3.15.3'),(6977,7296,'_elementor_pro_version','3.15.0'),(6978,7296,'_wp_page_template','default'),(6979,7296,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6980,7292,'_elementor_page_assets','a:0:{}'),(6984,7299,'_menu_item_type','post_type'),(6985,7299,'_menu_item_menu_item_parent','0'),(6986,7299,'_menu_item_object_id','7292'),(6987,7299,'_menu_item_object','page'),(6988,7299,'_menu_item_target',''),(6989,7299,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6990,7299,'_menu_item_xfn',''),(6991,7299,'_menu_item_url',''),(6994,7300,'_edit_lock','1695281586:1'),(6995,7300,'_edit_last','1'),(6996,7300,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(6997,7300,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(6998,7300,'_elementor_edit_mode','builder'),(6999,7300,'_elementor_template_type','wp-page'),(7000,7300,'_elementor_version','3.15.3'),(7001,7300,'_elementor_pro_version','3.15.0'),(7002,7302,'_elementor_edit_mode','builder'),(7003,7302,'_elementor_template_type','wp-page'),(7004,7302,'_elementor_version','3.15.3'),(7005,7302,'_elementor_pro_version','3.15.0'),(7006,7303,'_elementor_edit_mode','builder'),(7007,7303,'_elementor_template_type','wp-page'),(7008,7303,'_elementor_version','3.15.3'),(7009,7303,'_elementor_pro_version','3.15.0'),(7010,7300,'_wp_page_template','default'),(7011,7300,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Hewlett_Packard_Enterprise_logo.png\",\"id\":7596,\"size\":\"\",\"alt\":\"Hewlett_Packard_Enterprise_logo\",\"source\":\"library\"}}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7012,7304,'_elementor_edit_mode','builder'),(7013,7304,'_elementor_template_type','wp-page'),(7014,7304,'_elementor_version','3.15.3'),(7015,7304,'_elementor_pro_version','3.15.0'),(7016,7304,'_wp_page_template','default'),(7017,7304,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7018,7300,'_elementor_page_assets','a:0:{}'),(7020,7306,'_menu_item_type','post_type'),(7021,7306,'_menu_item_menu_item_parent','0'),(7022,7306,'_menu_item_object_id','7300'),(7023,7306,'_menu_item_object','page'),(7024,7306,'_menu_item_target',''),(7025,7306,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7026,7306,'_menu_item_xfn',''),(7027,7306,'_menu_item_url',''),(7030,7307,'_edit_lock','1712095988:1'),(7031,7307,'_edit_last','1'),(7032,7307,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(7033,7307,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(7034,7307,'_elementor_edit_mode','builder'),(7035,7307,'_elementor_template_type','wp-page'),(7036,7307,'_elementor_version','3.15.3'),(7037,7307,'_elementor_pro_version','3.15.0'),(7038,7309,'_elementor_edit_mode','builder'),(7039,7309,'_elementor_template_type','wp-page'),(7040,7309,'_elementor_version','3.15.3'),(7041,7309,'_elementor_pro_version','3.15.0'),(7042,7310,'_elementor_edit_mode','builder'),(7043,7310,'_elementor_template_type','wp-page'),(7044,7310,'_elementor_version','3.15.3'),(7045,7310,'_elementor_pro_version','3.15.0'),(7046,7307,'_wp_page_template','default'),(7047,7307,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7048,7311,'_elementor_edit_mode','builder'),(7049,7311,'_elementor_template_type','wp-page'),(7050,7311,'_elementor_version','3.15.3'),(7051,7311,'_elementor_pro_version','3.15.0'),(7052,7311,'_wp_page_template','default'),(7053,7311,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7054,7307,'_elementor_page_assets','a:0:{}'),(7056,7312,'_elementor_edit_mode','builder'),(7057,7312,'_elementor_template_type','wp-page'),(7058,7312,'_elementor_version','3.15.3'),(7059,7312,'_elementor_pro_version','3.15.0'),(7060,7312,'_wp_page_template','default'),(7061,7312,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7062,7312,'_elementor_page_assets','a:0:{}'),(7063,7312,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}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:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:29:\"bizmax-service-detail-feature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(7065,7314,'_menu_item_type','post_type'),(7066,7314,'_menu_item_menu_item_parent','0'),(7067,7314,'_menu_item_object_id','7307'),(7068,7314,'_menu_item_object','page'),(7069,7314,'_menu_item_target',''),(7070,7314,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7071,7314,'_menu_item_xfn',''),(7072,7314,'_menu_item_url',''),(7075,7315,'_edit_lock','1713233591:1'),(7076,7315,'_edit_last','1'),(7077,7315,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(7078,7315,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(7079,7315,'_elementor_edit_mode','builder'),(7080,7315,'_elementor_template_type','wp-page'),(7081,7315,'_elementor_version','3.15.3'),(7082,7315,'_elementor_pro_version','3.15.0'),(7083,7317,'_elementor_edit_mode','builder'),(7084,7317,'_elementor_template_type','wp-page'),(7085,7317,'_elementor_version','3.15.3'),(7086,7317,'_elementor_pro_version','3.15.0'),(7087,7318,'_elementor_edit_mode','builder'),(7088,7318,'_elementor_template_type','wp-page'),(7089,7318,'_elementor_version','3.15.3'),(7090,7318,'_elementor_pro_version','3.15.0'),(7091,7315,'_wp_page_template','default'),(7092,7315,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"150\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7093,7319,'_elementor_edit_mode','builder'),(7094,7319,'_elementor_template_type','wp-page'),(7095,7319,'_elementor_version','3.15.3'),(7096,7319,'_elementor_pro_version','3.15.0'),(7097,7319,'_wp_page_template','default'),(7098,7319,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7099,7315,'_elementor_page_assets','a:0:{}'),(7101,7321,'_menu_item_type','post_type'),(7102,7321,'_menu_item_menu_item_parent','0'),(7103,7321,'_menu_item_object_id','7315'),(7104,7321,'_menu_item_object','page'),(7105,7321,'_menu_item_target',''),(7106,7321,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7107,7321,'_menu_item_xfn',''),(7108,7321,'_menu_item_url',''),(7112,7322,'_wp_page_template','default'),(7113,7322,'_elementor_edit_mode','builder'),(7114,7322,'_elementor_template_type','wp-page'),(7115,7322,'_elementor_version','3.15.3'),(7116,7322,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7117,7322,'_elementor_page_assets','a:0:{}'),(7118,7322,'_elementor_pro_version','3.15.0'),(7119,7322,'_elementor_controls_usage','a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:3;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";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:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}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:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:29:\"bizmax-service-detail-feature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:19:\"bizmax_stitle_style\";i:1;s:22:\"bizmax_stitle_position\";i:1;s:19:\"bizmax_stitle_color\";i:1;s:20:\"bizmax_section_label\";i:1;s:20:\"bizmax_section_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(7121,7323,'_wp_page_template','default'),(7122,7323,'_elementor_edit_mode','builder'),(7123,7323,'_elementor_template_type','wp-page'),(7124,7323,'_elementor_version','3.15.3'),(7125,7323,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7126,7323,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7127,7323,'_elementor_pro_version','3.15.0'),(7129,7324,'_wp_page_template','default'),(7130,7324,'_elementor_edit_mode','builder'),(7131,7324,'_elementor_template_type','wp-page'),(7132,7324,'_elementor_version','3.15.3');
INSERT INTO `wpsl_postmeta` VALUES (7133,7324,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7134,7324,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7135,7324,'_elementor_pro_version','3.15.0'),(7137,7325,'_wp_page_template','default'),(7138,7325,'_elementor_edit_mode','builder'),(7139,7325,'_elementor_template_type','wp-page'),(7140,7325,'_elementor_version','3.15.3'),(7141,7325,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7142,7325,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7143,7325,'_elementor_pro_version','3.15.0'),(7146,7292,'footnotes',''),(7156,7327,'_wp_page_template','default'),(7157,7327,'_elementor_edit_mode','builder'),(7158,7327,'_elementor_template_type','wp-page'),(7159,7327,'_elementor_version','3.15.3'),(7160,7327,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7161,7327,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7162,7327,'_elementor_pro_version','3.15.0'),(7163,7328,'_wp_page_template','default'),(7164,7328,'_elementor_edit_mode','builder'),(7165,7328,'_elementor_template_type','wp-page'),(7166,7328,'_elementor_version','3.15.3'),(7167,7328,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7168,7328,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7169,7328,'_elementor_pro_version','3.15.0'),(7170,7329,'_wp_page_template','default'),(7171,7329,'_elementor_edit_mode','builder'),(7172,7329,'_elementor_template_type','wp-page'),(7173,7329,'_elementor_version','3.15.3'),(7174,7329,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7175,7329,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7176,7329,'_elementor_pro_version','3.15.0'),(7178,7330,'_wp_page_template','default'),(7179,7330,'_elementor_edit_mode','builder'),(7180,7330,'_elementor_template_type','wp-page'),(7181,7330,'_elementor_version','3.15.3'),(7182,7330,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7183,7330,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7184,7330,'_elementor_pro_version','3.15.0'),(7185,7331,'_wp_page_template','default'),(7186,7331,'_elementor_edit_mode','builder'),(7187,7331,'_elementor_template_type','wp-page'),(7188,7331,'_elementor_version','3.15.3'),(7189,7331,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7190,7331,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7191,7331,'_elementor_pro_version','3.15.0'),(7192,7332,'_wp_page_template','default'),(7193,7332,'_elementor_edit_mode','builder'),(7194,7332,'_elementor_template_type','wp-page'),(7195,7332,'_elementor_version','3.15.3'),(7196,7332,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7197,7332,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7198,7332,'_elementor_pro_version','3.15.0'),(7200,7333,'_elementor_edit_mode','builder'),(7201,7333,'_elementor_template_type','wp-page'),(7202,7333,'_elementor_version','3.15.3'),(7203,7333,'_elementor_pro_version','3.15.0'),(7204,7333,'_wp_page_template','default'),(7205,7333,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7206,7333,'_elementor_page_assets','a:0:{}'),(7207,7333,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}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:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:29:\"bizmax-service-detail-feature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(7209,7334,'_wp_page_template','default'),(7210,7334,'_elementor_edit_mode','builder'),(7211,7334,'_elementor_template_type','wp-page'),(7212,7334,'_elementor_version','3.15.3'),(7213,7334,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7214,7334,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7215,7334,'_elementor_pro_version','3.15.0'),(7216,7335,'_wp_page_template','default'),(7217,7335,'_elementor_edit_mode','builder'),(7218,7335,'_elementor_template_type','wp-page'),(7219,7335,'_elementor_version','3.15.3'),(7220,7335,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7221,7335,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7222,7335,'_elementor_pro_version','3.15.0'),(7223,7336,'_wp_page_template','default'),(7224,7336,'_elementor_edit_mode','builder'),(7225,7336,'_elementor_template_type','wp-page'),(7226,7336,'_elementor_version','3.15.3'),(7227,7336,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7228,7336,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7229,7336,'_elementor_pro_version','3.15.0'),(7231,7337,'_wp_page_template','default'),(7232,7337,'_elementor_edit_mode','builder'),(7233,7337,'_elementor_template_type','wp-page'),(7234,7337,'_elementor_version','3.15.3'),(7235,7337,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7236,7337,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7237,7337,'_elementor_pro_version','3.15.0'),(7238,7338,'_wp_page_template','default'),(7239,7338,'_elementor_edit_mode','builder'),(7240,7338,'_elementor_template_type','wp-page'),(7241,7338,'_elementor_version','3.15.3'),(7242,7338,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7243,7338,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7244,7338,'_elementor_pro_version','3.15.0'),(7245,7339,'_wp_page_template','default'),(7246,7339,'_elementor_edit_mode','builder'),(7247,7339,'_elementor_template_type','wp-page'),(7248,7339,'_elementor_version','3.15.3'),(7249,7339,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7250,7339,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7251,7339,'_elementor_pro_version','3.15.0'),(7253,7340,'_wp_page_template','default'),(7254,7340,'_elementor_edit_mode','builder'),(7255,7340,'_elementor_template_type','wp-page'),(7256,7340,'_elementor_version','3.15.3'),(7257,7340,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7258,7340,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7259,7340,'_elementor_pro_version','3.15.0'),(7260,7341,'_wp_page_template','default'),(7261,7341,'_elementor_edit_mode','builder'),(7262,7341,'_elementor_template_type','wp-page'),(7263,7341,'_elementor_version','3.15.3'),(7264,7341,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/service-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7265,7341,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7266,7341,'_elementor_pro_version','3.15.0'),(7267,7342,'_wp_page_template','default'),(7268,7342,'_elementor_edit_mode','builder'),(7269,7342,'_elementor_template_type','wp-page'),(7270,7342,'_elementor_version','3.15.3'),(7271,7342,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7272,7342,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7273,7342,'_elementor_pro_version','3.15.0'),(7275,7343,'_wp_page_template','default'),(7276,7343,'_elementor_edit_mode','builder'),(7277,7343,'_elementor_template_type','wp-page'),(7278,7343,'_elementor_version','3.15.3'),(7279,7343,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7280,7343,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7281,7343,'_elementor_pro_version','3.15.0'),(7282,7344,'_wp_page_template','default'),(7283,7344,'_elementor_edit_mode','builder'),(7284,7344,'_elementor_template_type','wp-page'),(7285,7344,'_elementor_version','3.15.3'),(7286,7344,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_2.jpeg\",\"id\":4779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2.png\",\"id\":4988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1.jpeg\",\"id\":4778,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1.png\",\"id\":4987,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7287,7344,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7288,7344,'_elementor_pro_version','3.15.0'),(7289,7345,'_wp_page_template','default'),(7290,7345,'_elementor_edit_mode','builder'),(7291,7345,'_elementor_template_type','wp-page'),(7292,7345,'_elementor_version','3.15.3'),(7293,7345,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7294,7345,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7295,7345,'_elementor_pro_version','3.15.0'),(7300,7346,'_wp_attached_file','2023/09/Amazon_Web_Services-Logo.wine_.svg'),(7301,7346,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:3026;s:5:\"width\";i:1200;s:6:\"height\";i:800;}'),(7303,7346,'_wp_attachment_image_alt','Amazon_Web_Services-Logo.wine'),(7313,7348,'_wp_page_template','default'),(7314,7348,'_elementor_edit_mode','builder'),(7315,7348,'_elementor_template_type','wp-page'),(7316,7348,'_elementor_version','3.15.3'),(7317,7348,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7318,7348,'_elementor_page_assets','a:0:{}'),(7319,7348,'_elementor_pro_version','3.15.0'),(7320,7349,'_wp_page_template','default'),(7321,7349,'_elementor_edit_mode','builder'),(7322,7349,'_elementor_template_type','wp-page'),(7323,7349,'_elementor_version','3.15.3'),(7324,7349,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7325,7349,'_elementor_page_assets','a:0:{}'),(7326,7349,'_elementor_pro_version','3.15.0'),(7327,7350,'_wp_page_template','default'),(7328,7350,'_elementor_edit_mode','builder'),(7329,7350,'_elementor_template_type','wp-page'),(7330,7350,'_elementor_version','3.15.3'),(7331,7350,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7332,7350,'_elementor_page_assets','a:0:{}'),(7333,7350,'_elementor_pro_version','3.15.0'),(7336,7351,'_wp_page_template','default'),(7337,7351,'_elementor_edit_mode','builder'),(7338,7351,'_elementor_template_type','wp-page'),(7339,7351,'_elementor_version','3.15.3'),(7340,7351,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7341,7351,'_elementor_page_assets','a:0:{}'),(7342,7351,'_elementor_pro_version','3.15.0'),(7344,7352,'_wp_page_template','default'),(7345,7352,'_elementor_edit_mode','builder'),(7346,7352,'_elementor_template_type','wp-page'),(7347,7352,'_elementor_version','3.15.3'),(7348,7352,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7349,7352,'_elementor_page_assets','a:0:{}'),(7350,7352,'_elementor_pro_version','3.15.0'),(7352,7353,'_wp_page_template','default'),(7353,7353,'_elementor_edit_mode','builder'),(7354,7353,'_elementor_template_type','wp-page'),(7355,7353,'_elementor_version','3.15.3'),(7356,7353,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary {\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7357,7353,'_elementor_page_assets','a:0:{}'),(7358,7353,'_elementor_pro_version','3.15.0'),(7361,7354,'_wp_attached_file','2023/09/Google-Logo.wine_.svg'),(7362,7354,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:1906;s:5:\"width\";i:1200;s:6:\"height\";i:800;}'),(7364,7354,'_wp_attachment_image_alt',''),(7365,7355,'_wp_page_template','default'),(7366,7355,'_elementor_edit_mode','builder'),(7367,7355,'_elementor_template_type','wp-page'),(7368,7355,'_elementor_version','3.15.3'),(7369,7355,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary {\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7370,7355,'_elementor_page_assets','a:0:{}'),(7371,7355,'_elementor_pro_version','3.15.0'),(7372,7356,'_wp_page_template','default'),(7373,7356,'_elementor_edit_mode','builder'),(7374,7356,'_elementor_template_type','wp-page'),(7375,7356,'_elementor_version','3.15.3'),(7376,7356,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary {\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7377,7356,'_elementor_page_assets','a:0:{}'),(7378,7356,'_elementor_pro_version','3.15.0'),(7379,7357,'_wp_page_template','default'),(7380,7357,'_elementor_edit_mode','builder'),(7381,7357,'_elementor_template_type','wp-page'),(7382,7357,'_elementor_version','3.15.3'),(7383,7357,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary {\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7384,7357,'_elementor_page_assets','a:0:{}'),(7385,7357,'_elementor_pro_version','3.15.0'),(7387,7358,'_wp_attached_file','2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png'),(7388,7358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:948;s:6:\"height\";i:389;s:4:\"file\";s:65:\"2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\";s:8:\"filesize\";i:55680;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13150;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3031;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454-768x315.png\";s:5:\"width\";i:768;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46471;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:65:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454-354x389.png\";s:5:\"width\";i:354;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5484;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:65:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7798;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:65:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454-738x389.png\";s:5:\"width\";i:738;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38114;}}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:{}}}'),(7389,7358,'_wp_attachment_image_alt','Cisco_Webex_logo_-_Brandlogos.net.svg'),(7390,7358,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1024;s:6:\"height\";i:389;s:4:\"file\";s:42:\"Cisco_Webex_logo_-_Brandlogos.net_.svg.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:50:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3270;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:50:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-300x114.png\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12140;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:50:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-768x292.png\";s:5:\"width\";i:768;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41789;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:50:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-354x389.png\";s:5:\"width\";i:354;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4950;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:50:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9161;}s:29:\"bizmax-blog-single-thumb-orig\";a:5:{s:4:\"file\";s:50:\"Cisco_Webex_logo_-_Brandlogos.net_.svg-738x389.png\";s:5:\"width\";i:738;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42446;}}'),(7391,7359,'_elementor_edit_mode','builder'),(7392,7359,'_elementor_template_type','wp-page'),(7393,7359,'_elementor_version','3.15.3'),(7394,7359,'_elementor_pro_version','3.15.0'),(7395,7359,'_wp_page_template','default'),(7396,7359,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7397,7359,'_elementor_page_assets','a:0:{}'),(7399,7360,'_elementor_edit_mode','builder'),(7400,7360,'_elementor_template_type','wp-page'),(7401,7360,'_elementor_version','3.15.3'),(7402,7360,'_elementor_pro_version','3.15.0'),(7403,7360,'_wp_page_template','default'),(7404,7360,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7405,7360,'_elementor_page_assets','a:0:{}'),(7407,7361,'_elementor_edit_mode','builder'),(7408,7361,'_elementor_template_type','wp-page'),(7409,7361,'_elementor_version','3.15.3'),(7410,7361,'_elementor_pro_version','3.15.0'),(7411,7361,'_wp_page_template','default'),(7412,7361,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7413,7361,'_elementor_page_assets','a:0:{}'),(7416,7362,'_wp_attached_file','2023/09/NICE_Ltd.-Logo.wine_.svg'),(7417,7362,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:1888;s:5:\"width\";i:1200;s:6:\"height\";i:800;}'),(7419,7362,'_wp_attachment_image_alt','NICE_Ltd.-Logo.wine'),(7420,7363,'_wp_attached_file','2023/09/verint-vector-logo.svg'),(7421,7363,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:9615;s:5:\"width\";i:652;s:6:\"height\";i:652;}'),(7423,7363,'_wp_attachment_image_alt','verint-vector-logo'),(7424,7364,'_wp_attached_file','2023/09/Zoom_Video_Communications-Logo.wine_.svg'),(7425,7364,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:1541;s:5:\"width\";i:1200;s:6:\"height\";i:800;}'),(7427,7364,'_wp_attachment_image_alt','Zoom_Video_Communications-Logo.wine'),(7428,7365,'_elementor_edit_mode','builder'),(7429,7365,'_elementor_template_type','wp-page'),(7430,7365,'_elementor_version','3.15.3'),(7431,7365,'_elementor_pro_version','3.15.0'),(7432,7365,'_wp_page_template','default'),(7433,7365,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7434,7365,'_elementor_page_assets','a:0:{}'),(7435,7366,'_elementor_edit_mode','builder'),(7436,7366,'_elementor_template_type','wp-page'),(7437,7366,'_elementor_version','3.15.3'),(7438,7366,'_elementor_pro_version','3.15.0'),(7439,7366,'_wp_page_template','default'),(7440,7366,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7441,7366,'_elementor_page_assets','a:0:{}'),(7442,7367,'_elementor_edit_mode','builder'),(7443,7367,'_elementor_template_type','wp-page'),(7444,7367,'_elementor_version','3.15.3'),(7445,7367,'_elementor_pro_version','3.15.0'),(7446,7367,'_wp_page_template','default'),(7447,7367,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"NICE\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Verint\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Zoom\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7448,7367,'_elementor_page_assets','a:0:{}'),(7450,7368,'_wp_attached_file','2023/09/audiocodes-logo-svg.svg'),(7451,7368,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:5324;s:5:\"width\";i:595;s:6:\"height\";i:101;}'),(7453,7368,'_wp_attachment_image_alt','audiocodes-logo-svg'),(7454,7369,'_wp_attached_file','2023/09/dialogic-corporation-vector-logo.svg'),(7455,7369,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:4195;s:5:\"width\";i:652;s:6:\"height\";i:652;}'),(7457,7369,'_wp_attachment_image_alt','dialogic-corporation-vector-logo'),(7458,7370,'_wp_attached_file','2023/09/ribbon_logo_hor_1_color_101-r-01.png'),(7459,7370,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1222;s:6:\"height\";i:502;s:4:\"file\";s:44:\"2023/09/ribbon_logo_hor_1_color_101-r-01.png\";s:8:\"filesize\";i:44583;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"ribbon_logo_hor_1_color_101-r-01-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9278;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"ribbon_logo_hor_1_color_101-r-01-1024x421.png\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35314;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"ribbon_logo_hor_1_color_101-r-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3532;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"ribbon_logo_hor_1_color_101-r-01-768x315.png\";s:5:\"width\";i:768;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26007;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:44:\"ribbon_logo_hor_1_color_101-r-01-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5989;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:44:\"ribbon_logo_hor_1_color_101-r-01-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8959;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:44:\"ribbon_logo_hor_1_color_101-r-01-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30133;}}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:{}}}'),(7460,7370,'_wp_attachment_image_alt','ribbon_logo_hor_1_color_101-r-01'),(7461,7371,'_wp_attached_file','2023/09/Cisco_Systems-Logo.wine_.svg'),(7462,7371,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:2006;s:5:\"width\";i:1200;s:6:\"height\";i:800;}'),(7464,7371,'_wp_attachment_image_alt','Cisco_Systems-Logo.wine'),(7465,7372,'_wp_attached_file','2023/09/extreme-networks-vector-logo.svg'),(7466,7372,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:2245;s:5:\"width\";i:652;s:6:\"height\";i:652;}'),(7468,7372,'_wp_attachment_image_alt','extreme-networks-vector-logo'),(7469,7373,'_elementor_edit_mode','builder'),(7470,7373,'_elementor_template_type','wp-page'),(7471,7373,'_elementor_version','3.15.3'),(7472,7373,'_elementor_pro_version','3.15.0'),(7473,7373,'_wp_page_template','default'),(7474,7373,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7475,7373,'_elementor_page_assets','a:0:{}'),(7477,7374,'_elementor_edit_mode','builder'),(7478,7374,'_elementor_template_type','wp-page'),(7479,7374,'_elementor_version','3.15.3'),(7480,7374,'_elementor_pro_version','3.15.0'),(7481,7374,'_wp_page_template','default'),(7482,7374,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7483,7374,'_elementor_page_assets','a:0:{}'),(7485,7375,'_elementor_edit_mode','builder'),(7486,7375,'_elementor_template_type','wp-page'),(7487,7375,'_elementor_version','3.15.3'),(7488,7375,'_elementor_pro_version','3.15.0'),(7489,7375,'_wp_page_template','default'),(7490,7375,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"Audiocodes\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Dialogic\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"Ribbon\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Extreme Networks\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"HP\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7491,7375,'_elementor_page_assets','a:0:{}'),(7496,7376,'_wp_attached_file','2023/09/Morphisec_Logo.jpg'),(7497,7376,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2480;s:6:\"height\";i:709;s:4:\"file\";s:26:\"2023/09/Morphisec_Logo.jpg\";s:8:\"filesize\";i:112977;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Morphisec_Logo-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Morphisec_Logo-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30444;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Morphisec_Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5160;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Morphisec_Logo-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22044;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"Morphisec_Logo-1536x439.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49534;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"Morphisec_Logo-2048x585.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71544;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:26:\"Morphisec_Logo-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13444;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:26:\"Morphisec_Logo-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13273;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:26:\"Morphisec_Logo-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26303;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"Morphisec\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:36:\"Morphisec.com (PRNewsfoto/Morphisec)\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:125:\"This image must be used within the context of the news release it accompanied. Request permission from issuer for other uses.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:14:\"Morphisec Logo\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:10:\"TECHNOLOGY\";}}}'),(7498,7376,'_wp_attachment_image_alt','Morphisec Logo'),(7499,7377,'_elementor_edit_mode','builder'),(7500,7377,'_elementor_template_type','wp-page'),(7501,7377,'_elementor_version','3.15.3'),(7502,7377,'_elementor_pro_version','3.15.0'),(7503,7377,'_wp_page_template','default'),(7504,7377,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7505,7377,'_elementor_page_assets','a:0:{}'),(7507,7378,'_elementor_edit_mode','builder'),(7508,7378,'_elementor_template_type','wp-page'),(7509,7378,'_elementor_version','3.15.3'),(7510,7378,'_elementor_pro_version','3.15.0'),(7511,7378,'_wp_page_template','default'),(7512,7378,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7513,7378,'_elementor_page_assets','a:0:{}'),(7515,7379,'_elementor_edit_mode','builder'),(7516,7379,'_elementor_template_type','wp-page'),(7517,7379,'_elementor_version','3.15.3'),(7518,7379,'_elementor_pro_version','3.15.0'),(7519,7379,'_wp_page_template','default'),(7520,7379,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7521,7379,'_elementor_page_assets','a:0:{}'),(7524,7380,'_wp_attached_file','2023/09/Microsoft-Logo.wine_.svg'),(7525,7380,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:3174;s:5:\"width\";i:1200;s:6:\"height\";i:800;}'),(7527,7380,'_wp_attachment_image_alt','Microsoft-Logo.wine'),(7528,7381,'_elementor_edit_mode','builder'),(7529,7381,'_elementor_template_type','wp-page'),(7530,7381,'_elementor_version','3.15.3'),(7531,7381,'_elementor_pro_version','3.15.0'),(7532,7381,'_wp_page_template','default'),(7533,7381,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7534,7381,'_elementor_page_assets','a:0:{}'),(7535,7382,'_elementor_edit_mode','builder'),(7536,7382,'_elementor_template_type','wp-page'),(7537,7382,'_elementor_version','3.15.3'),(7538,7382,'_elementor_pro_version','3.15.0'),(7539,7382,'_wp_page_template','default'),(7540,7382,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7541,7382,'_elementor_page_assets','a:0:{}'),(7542,7383,'_elementor_edit_mode','builder'),(7543,7383,'_elementor_template_type','wp-page'),(7544,7383,'_elementor_version','3.15.3'),(7545,7383,'_elementor_pro_version','3.15.0'),(7546,7383,'_wp_page_template','default'),(7547,7383,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7548,7383,'_elementor_page_assets','a:0:{}'),(7551,7384,'_elementor_edit_mode','builder'),(7552,7384,'_elementor_template_type','wp-page'),(7553,7384,'_elementor_version','3.15.3'),(7554,7384,'_elementor_pro_version','3.15.0'),(7555,7384,'_wp_page_template','default'),(7556,7384,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7557,7384,'_elementor_page_assets','a:0:{}'),(7559,7385,'_elementor_edit_mode','builder'),(7560,7385,'_elementor_template_type','wp-page'),(7561,7385,'_elementor_version','3.15.3'),(7562,7385,'_elementor_pro_version','3.15.0'),(7563,7385,'_wp_page_template','default'),(7564,7385,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7565,7385,'_elementor_page_assets','a:0:{}'),(7567,7386,'_elementor_edit_mode','builder'),(7568,7386,'_elementor_template_type','wp-page'),(7569,7386,'_elementor_version','3.15.3'),(7570,7386,'_elementor_pro_version','3.15.0'),(7571,7386,'_wp_page_template','default'),(7572,7386,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Teams\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Zoom Phone\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7573,7386,'_elementor_page_assets','a:0:{}'),(7580,7387,'_elementor_template_type','wp-page'),(7581,7387,'_elementor_version','3.15.3'),(7582,7387,'_elementor_edit_mode','builder'),(7583,7387,'_wp_page_template','default'),(7584,7387,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7258,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7585,7387,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(7586,7387,'_elementor_pro_version','3.15.0'),(7588,7388,'_elementor_template_type','wp-page'),(7589,7388,'_elementor_version','3.15.3'),(7590,7388,'_elementor_edit_mode','builder'),(7591,7388,'_wp_page_template','default'),(7592,7388,'_elementor_data','[{\"id\":\"eba223d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/staps_bg.jpeg\",\"id\":4787,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba45896\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"77b1aac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ffa572\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"38090ea\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"474da0c\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_1.jpeg\",\"id\":4788,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"01\",\"bizmax_title\":\"Meeting\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_2.jpeg\",\"id\":4789,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"02\",\"bizmax_title\":\"Development\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/arrow_shape.png\",\"id\":4704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0ab5f96\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/step_3.jpeg\",\"id\":4790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_number\":\"03\",\"bizmax_title\":\"Release\",\"bizmax_desc\":\"We provide a range of digital marketing solutions.\",\"bizmax_shape_img\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"86a499d\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"bizmax-list-step-widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7258,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7593,7388,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(7594,7388,'_elementor_pro_version','3.15.0'),(7596,7389,'_elementor_template_type','wp-page'),(7597,7389,'_elementor_version','3.15.3'),(7598,7389,'_elementor_edit_mode','builder'),(7599,7389,'_wp_page_template','default'),(7600,7389,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7258,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7601,7389,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(7602,7389,'_elementor_pro_version','3.15.0'),(7605,7390,'_edit_lock','1700203220:1'),(7606,7390,'_edit_last','1'),(7607,7390,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(7608,7390,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(7609,7390,'_elementor_edit_mode','builder'),(7610,7390,'_elementor_template_type','wp-page'),(7611,7390,'_elementor_version','3.15.3'),(7612,7390,'_elementor_pro_version','3.15.0'),(7614,7392,'_elementor_edit_mode','builder'),(7615,7392,'_elementor_template_type','wp-page'),(7616,7392,'_elementor_version','3.15.3'),(7617,7392,'_elementor_pro_version','3.15.0'),(7618,7393,'_elementor_edit_mode','builder'),(7619,7393,'_elementor_template_type','wp-page'),(7620,7393,'_elementor_version','3.15.3'),(7621,7393,'_elementor_pro_version','3.15.0'),(7622,7390,'_wp_page_template','default'),(7623,7390,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(7624,7394,'_elementor_edit_mode','builder'),(7625,7394,'_elementor_template_type','wp-page'),(7626,7394,'_elementor_version','3.15.3'),(7627,7394,'_elementor_pro_version','3.15.0'),(7628,7394,'_wp_page_template','default'),(7629,7394,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(7630,7390,'_elementor_page_assets','a:0:{}'),(7633,7395,'_wp_page_template','default'),(7634,7395,'_elementor_edit_mode','builder'),(7635,7395,'_elementor_template_type','wp-page'),(7636,7395,'_elementor_version','3.15.3'),(7637,7395,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7638,7395,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(7639,7395,'_elementor_pro_version','3.15.0'),(7641,7396,'_wp_page_template','default'),(7642,7396,'_elementor_edit_mode','builder'),(7643,7396,'_elementor_template_type','wp-page'),(7644,7396,'_elementor_version','3.15.3'),(7645,7396,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"853efe8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1717b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9d6404\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"301f608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"2fb2497\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"News  and Event\",\"bizmax_stitle_style\":\"style-2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"0e4a07e\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e5fcb2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee47db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a43e365\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2ab40d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"c96dfa8\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"3a672fb\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"02eb8be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"52da82d\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7646,7396,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(7647,7396,'_elementor_pro_version','3.15.0'),(7649,7397,'_wp_page_template','default'),(7650,7397,'_elementor_edit_mode','builder'),(7651,7397,'_elementor_template_type','wp-page'),(7652,7397,'_elementor_version','3.15.3'),(7653,7397,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7654,7397,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(7655,7397,'_elementor_pro_version','3.15.0'),(7658,7398,'_elementor_template_type','wp-page'),(7659,7398,'_elementor_version','3.15.3'),(7660,7398,'_elementor_edit_mode','builder'),(7661,7398,'_wp_page_template','default'),(7662,7398,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7258,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7663,7398,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(7664,7398,'_elementor_pro_version','3.15.0'),(7666,7399,'_elementor_template_type','wp-page'),(7667,7399,'_elementor_version','3.15.3'),(7668,7399,'_elementor_edit_mode','builder'),(7669,7399,'_wp_page_template','default'),(7670,7399,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl.png\",\"id\":7258,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7671,7399,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(7672,7399,'_elementor_pro_version','3.15.0'),(7674,7400,'_elementor_template_type','wp-page'),(7675,7400,'_elementor_version','3.15.3'),(7676,7400,'_elementor_edit_mode','builder'),(7677,7400,'_wp_page_template','default'),(7678,7400,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7679,7400,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(7680,7400,'_elementor_pro_version','3.15.0'),(7684,7401,'_wp_page_template','default'),(7685,7401,'_elementor_edit_mode','builder'),(7686,7401,'_elementor_template_type','wp-page'),(7687,7401,'_elementor_version','3.15.3'),(7688,7401,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(7689,7401,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(7690,7401,'_elementor_pro_version','3.15.0'),(7691,7401,'_elementor_controls_usage','a:6:{s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:3:{s:20:\"bizmax_section_title\";i:1;s:19:\"bizmax_stitle_style\";i:1;s:22:\"bizmax_stitle_position\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:11;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:7;s:15:\"animation_delay\";i:5;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:2;s:15:\"stretch_section\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;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:16:\"background_color\";i:1;}}}}s:15:\"bizmax-services\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:20:\"bizmax_service_title\";i:5;s:19:\"bizmax_service_desc\";i:5;s:20:\"bizmax_service_thumb\";i:5;s:15:\"bizmax_btn_link\";i:5;s:15:\"bizmax_icon_img\";i:5;}}}}s:18:\"bizmax-brand-logos\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:1:{s:12:\"bizmax_lists\";i:1;}s:23:\"bizmax_settings_section\";a:5:{s:20:\"bizmax_slider_column\";i:1;s:24:\"bizmax_slider_column_tab\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;s:17:\"bizmax_slider_nav\";i:1;}}}}s:19:\"bizmax-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:12:\"bizmax_lists\";i:1;s:17:\"bizmax_title_desc\";i:1;s:21:\"bizmax_testimonial_bg\";i:1;}s:23:\"bizmax_settings_section\";a:4:{s:26:\"bizmax_slider_column_large\";i:1;s:20:\"bizmax_slider_column\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;}}}}}'),(7693,7402,'_wp_page_template','default'),(7694,7402,'_elementor_edit_mode','builder'),(7695,7402,'_elementor_template_type','wp-page'),(7696,7402,'_elementor_version','3.15.3'),(7697,7402,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary {\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7698,7402,'_elementor_page_assets','a:0:{}'),(7699,7402,'_elementor_pro_version','3.15.0'),(7701,7403,'_wp_page_template','default'),(7702,7403,'_elementor_edit_mode','builder'),(7703,7403,'_elementor_template_type','wp-page'),(7704,7403,'_elementor_version','3.15.3'),(7705,7403,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary {\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7706,7403,'_elementor_page_assets','a:0:{}'),(7707,7403,'_elementor_pro_version','3.15.0'),(7709,7404,'_wp_page_template','default'),(7710,7404,'_elementor_edit_mode','builder'),(7711,7404,'_elementor_template_type','wp-page'),(7712,7404,'_elementor_version','3.15.3'),(7713,7404,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary {\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7714,7404,'_elementor_page_assets','a:0:{}'),(7715,7404,'_elementor_pro_version','3.15.0'),(7719,7405,'_elementor_edit_mode','builder'),(7720,7405,'_elementor_template_type','wp-page'),(7721,7405,'_elementor_version','3.15.3'),(7722,7405,'_elementor_pro_version','3.15.0'),(7723,7405,'_wp_page_template','default'),(7724,7405,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"Audiocodes\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Dialogic\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"Ribbon\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Extreme Networks\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"HP\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7725,7405,'_elementor_page_assets','a:0:{}'),(7727,7406,'_elementor_edit_mode','builder'),(7728,7406,'_elementor_template_type','wp-page'),(7729,7406,'_elementor_version','3.15.3'),(7730,7406,'_elementor_pro_version','3.15.0'),(7731,7406,'_wp_page_template','default');
INSERT INTO `wpsl_postmeta` VALUES (7732,7406,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"Audiocodes\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Dialogic\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"Ribbon\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Extreme Networks\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"HP\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7733,7406,'_elementor_page_assets','a:0:{}'),(7735,7407,'_elementor_edit_mode','builder'),(7736,7407,'_elementor_template_type','wp-page'),(7737,7407,'_elementor_version','3.15.3'),(7738,7407,'_elementor_pro_version','3.15.0'),(7739,7407,'_wp_page_template','default'),(7740,7407,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"Audiocodes\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Dialogic\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"Ribbon\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Extreme Networks\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"HP\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7741,7407,'_elementor_page_assets','a:0:{}'),(7745,7408,'_elementor_edit_mode','builder'),(7746,7408,'_elementor_template_type','wp-page'),(7747,7408,'_elementor_version','3.15.3'),(7748,7408,'_elementor_pro_version','3.15.0'),(7749,7408,'_wp_page_template','default'),(7750,7408,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7751,7408,'_elementor_page_assets','a:0:{}'),(7753,7409,'_elementor_edit_mode','builder'),(7754,7409,'_elementor_template_type','wp-page'),(7755,7409,'_elementor_version','3.15.3'),(7756,7409,'_elementor_pro_version','3.15.0'),(7757,7409,'_wp_page_template','default'),(7758,7409,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7759,7409,'_elementor_page_assets','a:0:{}'),(7761,7410,'_elementor_edit_mode','builder'),(7762,7410,'_elementor_template_type','wp-page'),(7763,7410,'_elementor_version','3.15.3'),(7764,7410,'_elementor_pro_version','3.15.0'),(7765,7410,'_wp_page_template','default'),(7766,7410,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7767,7410,'_elementor_page_assets','a:0:{}'),(7771,7411,'_elementor_edit_mode','builder'),(7772,7411,'_elementor_template_type','wp-page'),(7773,7411,'_elementor_version','3.15.3'),(7774,7411,'_elementor_pro_version','3.15.0'),(7775,7411,'_wp_page_template','default'),(7776,7411,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Teams\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Zoom Phone\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7777,7411,'_elementor_page_assets','a:0:{}'),(7779,7412,'_elementor_edit_mode','builder'),(7780,7412,'_elementor_template_type','wp-page'),(7781,7412,'_elementor_version','3.15.3'),(7782,7412,'_elementor_pro_version','3.15.0'),(7783,7412,'_wp_page_template','default'),(7784,7412,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Teams\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Zoom Phone\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7785,7412,'_elementor_page_assets','a:0:{}'),(7787,7413,'_elementor_edit_mode','builder'),(7788,7413,'_elementor_template_type','wp-page'),(7789,7413,'_elementor_version','3.15.3'),(7790,7413,'_elementor_pro_version','3.15.0'),(7791,7413,'_wp_page_template','default'),(7792,7413,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Teams\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Zoom Phone\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7793,7413,'_elementor_page_assets','a:0:{}'),(7797,7414,'_elementor_edit_mode','builder'),(7798,7414,'_elementor_template_type','wp-page'),(7799,7414,'_elementor_version','3.15.3'),(7800,7414,'_elementor_pro_version','3.15.0'),(7801,7414,'_wp_page_template','default'),(7802,7414,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"NICE\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Verint\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Zoom\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7803,7414,'_elementor_page_assets','a:0:{}'),(7805,7415,'_elementor_edit_mode','builder'),(7806,7415,'_elementor_template_type','wp-page'),(7807,7415,'_elementor_version','3.15.3'),(7808,7415,'_elementor_pro_version','3.15.0'),(7809,7415,'_wp_page_template','default'),(7810,7415,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"NICE\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Verint\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Zoom\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#E9A132\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7811,7415,'_elementor_page_assets','a:0:{}'),(7813,7416,'_elementor_edit_mode','builder'),(7814,7416,'_elementor_template_type','wp-page'),(7815,7416,'_elementor_version','3.15.3'),(7816,7416,'_elementor_pro_version','3.15.0'),(7817,7416,'_wp_page_template','default'),(7818,7416,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"NICE\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Verint\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Zoom\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7819,7416,'_elementor_page_assets','a:0:{}'),(7841,7424,'_wp_page_template','default'),(7842,7424,'_elementor_edit_mode','builder'),(7843,7424,'_elementor_template_type','wp-page'),(7844,7424,'_elementor_version','3.15.3'),(7845,7424,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary {\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7846,7424,'_elementor_page_assets','a:0:{}'),(7847,7424,'_elementor_pro_version','3.15.0'),(7848,7425,'_wp_page_template','default'),(7849,7425,'_elementor_edit_mode','builder'),(7850,7425,'_elementor_template_type','wp-page'),(7851,7425,'_elementor_version','3.15.3'),(7852,7425,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary {\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7853,7425,'_elementor_page_assets','a:0:{}'),(7854,7425,'_elementor_pro_version','3.15.0'),(7855,7426,'_wp_page_template','default'),(7856,7426,'_elementor_edit_mode','builder'),(7857,7426,'_elementor_template_type','wp-page'),(7858,7426,'_elementor_version','3.15.3'),(7859,7426,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7860,7426,'_elementor_page_assets','a:0:{}'),(7861,7426,'_elementor_pro_version','3.15.0'),(7864,7427,'_elementor_edit_mode','builder'),(7865,7427,'_elementor_template_type','wp-page'),(7866,7427,'_elementor_version','3.15.3'),(7867,7427,'_elementor_pro_version','3.15.0'),(7868,7427,'_wp_page_template','default'),(7869,7427,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"Audiocodes\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Dialogic\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"Ribbon\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Extreme Networks\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"HP\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7870,7427,'_elementor_page_assets','a:0:{}'),(7872,7428,'_elementor_edit_mode','builder'),(7873,7428,'_elementor_template_type','wp-page'),(7874,7428,'_elementor_version','3.15.3'),(7875,7428,'_elementor_pro_version','3.15.0'),(7876,7428,'_wp_page_template','default'),(7877,7428,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"Audiocodes\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Dialogic\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"Ribbon\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Extreme Networks\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"HP\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7878,7428,'_elementor_page_assets','a:0:{}'),(7880,7429,'_elementor_edit_mode','builder'),(7881,7429,'_elementor_template_type','wp-page'),(7882,7429,'_elementor_version','3.15.3'),(7883,7429,'_elementor_pro_version','3.15.0'),(7884,7429,'_wp_page_template','default'),(7885,7429,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"Audiocodes\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Dialogic\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"Ribbon\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Extreme Networks\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"HP\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7886,7429,'_elementor_page_assets','a:0:{}'),(7889,7430,'_elementor_edit_mode','builder'),(7890,7430,'_elementor_template_type','wp-page'),(7891,7430,'_elementor_version','3.15.3'),(7892,7430,'_elementor_pro_version','3.15.0'),(7893,7430,'_wp_page_template','default'),(7894,7430,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7895,7430,'_elementor_page_assets','a:0:{}'),(7897,7431,'_elementor_edit_mode','builder'),(7898,7431,'_elementor_template_type','wp-page'),(7899,7431,'_elementor_version','3.15.3'),(7900,7431,'_elementor_pro_version','3.15.0'),(7901,7431,'_wp_page_template','default'),(7902,7431,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7903,7431,'_elementor_page_assets','a:0:{}'),(7905,7432,'_elementor_edit_mode','builder'),(7906,7432,'_elementor_template_type','wp-page'),(7907,7432,'_elementor_version','3.15.3'),(7908,7432,'_elementor_pro_version','3.15.0'),(7909,7432,'_wp_page_template','default'),(7910,7432,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7911,7432,'_elementor_page_assets','a:0:{}'),(7916,7433,'_elementor_edit_mode','builder'),(7917,7433,'_elementor_template_type','wp-page'),(7918,7433,'_elementor_version','3.15.3'),(7919,7433,'_elementor_pro_version','3.15.0'),(7920,7433,'_wp_page_template','default'),(7921,7433,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Teams\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Zoom Phone\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7922,7433,'_elementor_page_assets','a:0:{}'),(7924,7434,'_elementor_edit_mode','builder'),(7925,7434,'_elementor_template_type','wp-page'),(7926,7434,'_elementor_version','3.15.3'),(7927,7434,'_elementor_pro_version','3.15.0'),(7928,7434,'_wp_page_template','default'),(7929,7434,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Teams\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Zoom Phone\",\"_id\":\"5982153\"}]},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7930,7434,'_elementor_page_assets','a:0:{}'),(7932,7435,'_elementor_edit_mode','builder'),(7933,7435,'_elementor_template_type','wp-page'),(7934,7435,'_elementor_version','3.15.3'),(7935,7435,'_elementor_pro_version','3.15.0'),(7936,7435,'_wp_page_template','default'),(7937,7435,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Teams\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Zoom Phone\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7938,7435,'_elementor_page_assets','a:0:{}'),(7941,7436,'_elementor_edit_mode','builder'),(7942,7436,'_elementor_template_type','wp-page'),(7943,7436,'_elementor_version','3.15.3'),(7944,7436,'_elementor_pro_version','3.15.0'),(7945,7436,'_wp_page_template','default'),(7946,7436,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"NICE\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Verint\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Zoom\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7947,7436,'_elementor_page_assets','a:0:{}'),(7949,7437,'_elementor_edit_mode','builder'),(7950,7437,'_elementor_template_type','wp-page'),(7951,7437,'_elementor_version','3.15.3'),(7952,7437,'_elementor_pro_version','3.15.0'),(7953,7437,'_wp_page_template','default'),(7954,7437,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"NICE\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Verint\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Zoom\"}],\"_css_classes\":\"partner-logo\",\"custom_css\":\".partner-logo .bg-primary{\\n    background-color: #18191d21 !important\\n}\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7955,7437,'_elementor_page_assets','a:0:{}'),(7957,7438,'_elementor_edit_mode','builder'),(7958,7438,'_elementor_template_type','wp-page'),(7959,7438,'_elementor_version','3.15.3'),(7960,7438,'_elementor_pro_version','3.15.0'),(7961,7438,'_wp_page_template','default'),(7962,7438,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"NICE\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Verint\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Zoom\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7963,7438,'_elementor_page_assets','a:0:{}'),(7983,6886,'_wp_attachment_backup_sizes','a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:281;s:4:\"file\";s:70:\"How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.webp\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:78:\"How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7332;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:78:\"How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-300x169.webp\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14916;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:78:\"How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-354x281.webp\";s:5:\"width\";i:354;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27020;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:78:\"How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits-355x281.webp\";s:5:\"width\";i:355;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27960;}}'),(7986,7452,'_thumbnail_id','6886'),(7987,7452,'_elementor_edit_mode','builder'),(7988,7452,'_elementor_template_type','wp-post'),(7989,7452,'_elementor_version','3.15.3'),(7990,7452,'_elementor_pro_version','3.15.0'),(7991,7452,'_wp_page_template','default'),(7992,7452,'_elementor_data','[{\"id\":\"eb5db21\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4da1dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0a5561a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19, with skills shortages and the ease of migration, along with organisational-driven initiatives now the top three drivers for organisations considering managed ICT services.<\\/p><p>\\u201cThe COVID-19 pandemic not only has accelerated managed service adoption in ASEAN, including the SMB [small- to medium-sized business] segment, but also changed enterprises\\u2019 buying behavior while considering new ICT solutions,\\u201d said Alfie Amir, principal analyst at industry research firm GlobalData. \\u201cScalability, cost-savings and product lifecycle are no longer the top drivers for managed\\u00a0services.\\u201d<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e572ae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01072cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"241084d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/ \",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(7993,7452,'_elementor_page_assets','a:0:{}'),(7994,7452,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}'),(7996,6887,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:740;s:6:\"height\";i:462;s:4:\"file\";s:19:\"mark_iles_tra_2.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:27:\"mark_iles_tra_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:5633;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:27:\"mark_iles_tra_2-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10699;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:27:\"mark_iles_tra_2-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24478;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:27:\"mark_iles_tra_2-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19804;}s:29:\"bizmax-blog-single-thumb-orig\";a:5:{s:4:\"file\";s:27:\"mark_iles_tra_2-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35835;}}'),(7997,6887,'_wp_attachment_image_alt','mark_iles_tra_2'),(8000,7453,'_thumbnail_id','6887'),(8001,7453,'_elementor_edit_mode','builder'),(8002,7453,'_elementor_template_type','wp-post'),(8003,7453,'_elementor_version','3.15.3'),(8004,7453,'_elementor_pro_version','3.15.0'),(8005,7453,'_wp_page_template','default'),(8006,7453,'_elementor_data','[{\"id\":\"865cbd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"567e212\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a23a145\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Building out managed services capabilities in response to evolving customer buying patterns ranks as a leading priority for channel partners across Southeast Asia, as the ecosystem embraces subscription-based selling.<\\/p><p>According to EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- growing annuity revenue currently stands tall as the no.1 strategic objective for value-added resellers, system integrators and solution providers\\u00a0in\\u00a0the\\u00a0region.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816e226\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8e85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b20201f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/www.channelasia.tech\\/article\\/692441\\/managed-services-now-top-partner-priority-asean\\/ \",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(8007,7453,'_elementor_page_assets','a:0:{}'),(8008,7453,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}'),(8010,6885,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:740;s:6:\"height\";i:491;s:4:\"file\";s:25:\"dreamstime_s_83083775.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:33:\"dreamstime_s_83083775-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5657;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:33:\"dreamstime_s_83083775-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13231;}s:22:\"bizmax-team-thumb-orig\";a:5:{s:4:\"file\";s:33:\"dreamstime_s_83083775-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25108;}s:22:\"bizmax-blog-thumb-orig\";a:5:{s:4:\"file\";s:33:\"dreamstime_s_83083775-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21803;}s:29:\"bizmax-blog-single-thumb-orig\";a:5:{s:4:\"file\";s:33:\"dreamstime_s_83083775-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49877;}}'),(8013,7454,'_thumbnail_id','6885'),(8014,7454,'_elementor_edit_mode','builder'),(8015,7454,'_elementor_template_type','wp-post'),(8016,7454,'_elementor_version','3.15.3'),(8017,7454,'_elementor_pro_version','3.15.0'),(8018,7454,'_wp_page_template','default'),(8019,7454,'_elementor_data','[{\"id\":\"6779484\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7b87472\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"de14f9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.<\\/p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9f3ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1833f5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29d34d4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"link\":{\"url\":\"https:\\/\\/www.channelasia.tech\\/article\\/671033\\/asean-embraces-managed-services-expect-channel-m-rise\\/ \",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#3F444B\",\"background_color\":\"#FFFFFF7A\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#004699\",\"button_hover_border_color\":\"#004699\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3F444B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(8020,7454,'_elementor_page_assets','a:0:{}'),(8021,7454,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}'),(8044,7462,'_wp_attached_file','2023/09/WhatsApp.svg.png'),(8045,7462,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:805;s:4:\"file\";s:24:\"2023/09/WhatsApp.svg.png\";s:8:\"filesize\";i:119407;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"WhatsApp.svg-298x300.png\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42290;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"WhatsApp.svg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16208;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"WhatsApp.svg-768x773.png\";s:5:\"width\";i:768;s:6:\"height\";i:773;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194672;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:24:\"WhatsApp.svg-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58315;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:24:\"WhatsApp.svg-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55522;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:24:\"WhatsApp.svg-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83289;}}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:{}}}'),(8046,7462,'_wp_attachment_image_alt','WhatsApp.svg'),(8047,7463,'_elementor_template_type','wp-page'),(8048,7463,'_elementor_version','3.15.3'),(8049,7463,'_elementor_edit_mode','builder'),(8050,7463,'_wp_page_template','default'),(8051,7463,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8052,7463,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(8053,7463,'_elementor_pro_version','3.15.0'),(8054,7464,'_elementor_template_type','wp-page'),(8055,7464,'_elementor_version','3.15.3'),(8056,7464,'_elementor_edit_mode','builder'),(8057,7464,'_wp_page_template','default'),(8058,7464,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+65 9677 2316\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com\",\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO (Asia) Pte Ltd <br\\/>8 Ubi Road 2, Zervex <br\\/>#06-31<br\\/>Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8059,7464,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(8060,7464,'_elementor_pro_version','3.15.0'),(8061,7465,'_elementor_template_type','wp-page'),(8062,7465,'_elementor_version','3.15.3'),(8063,7465,'_elementor_edit_mode','builder'),(8064,7465,'_wp_page_template','default'),(8065,7465,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8066,7465,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(8067,7465,'_elementor_pro_version','3.15.0'),(8074,7470,'_elementor_template_type','wp-page'),(8075,7470,'_elementor_version','3.15.3'),(8076,7470,'_elementor_edit_mode','builder'),(8077,7470,'_wp_page_template','default'),(8078,7470,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8079,7470,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(8080,7470,'_elementor_pro_version','3.15.0'),(8082,7471,'_elementor_template_type','wp-page'),(8083,7471,'_elementor_version','3.15.3'),(8084,7471,'_elementor_edit_mode','builder'),(8085,7471,'_wp_page_template','default'),(8086,7471,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8087,7471,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(8088,7471,'_elementor_pro_version','3.15.0'),(8090,7472,'_elementor_template_type','wp-page'),(8091,7472,'_elementor_version','3.15.3'),(8092,7472,'_elementor_edit_mode','builder'),(8093,7472,'_wp_page_template','default'),(8094,7472,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_desc\":\"Have Any Question?\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8095,7472,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(8096,7472,'_elementor_pro_version','3.15.0'),(8100,7473,'_elementor_template_type','wp-page'),(8101,7473,'_elementor_version','3.15.3'),(8102,7473,'_elementor_edit_mode','builder'),(8103,7473,'_wp_page_template','default'),(8104,7473,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_desc\":\"Have Any Question?\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8105,7473,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(8106,7473,'_elementor_pro_version','3.15.0'),(8108,7474,'_elementor_template_type','wp-page'),(8109,7474,'_elementor_version','3.15.3'),(8110,7474,'_elementor_edit_mode','builder'),(8111,7474,'_wp_page_template','default'),(8112,7474,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_desc\":\"Have Any Question?\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8113,7474,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(8114,7474,'_elementor_pro_version','3.15.0'),(8116,7475,'_elementor_template_type','wp-page'),(8117,7475,'_elementor_version','3.15.3'),(8118,7475,'_elementor_edit_mode','builder'),(8119,7475,'_wp_page_template','default'),(8120,7475,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_desc\":\"Have Any Question?\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8121,7475,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(8122,7475,'_elementor_pro_version','3.15.0'),(8128,7478,'_wp_page_template','default'),(8129,7478,'_elementor_edit_mode','builder'),(8130,7478,'_elementor_template_type','wp-page'),(8131,7478,'_elementor_version','3.15.3'),(8132,7478,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8133,7478,'_elementor_page_assets','a:0:{}'),(8134,7478,'_elementor_pro_version','3.15.0'),(8136,7479,'_wp_page_template','default'),(8137,7479,'_elementor_edit_mode','builder'),(8138,7479,'_elementor_template_type','wp-page'),(8139,7479,'_elementor_version','3.15.3'),(8140,7479,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"AWS\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Azure\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Google\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8141,7479,'_elementor_page_assets','a:0:{}'),(8142,7479,'_elementor_pro_version','3.15.0'),(8144,7480,'_wp_page_template','default'),(8145,7480,'_elementor_edit_mode','builder'),(8146,7480,'_elementor_template_type','wp-page'),(8147,7480,'_elementor_version','3.15.3'),(8148,7480,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8149,7480,'_elementor_page_assets','a:0:{}'),(8150,7480,'_elementor_pro_version','3.15.0'),(8163,7489,'_elementor_edit_mode','builder'),(8164,7489,'_elementor_template_type','wp-page'),(8165,7489,'_elementor_version','3.15.3'),(8166,7489,'_elementor_pro_version','3.15.0'),(8167,7489,'_wp_page_template','default'),(8168,7489,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"NICE\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Verint\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Zoom\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8169,7489,'_elementor_page_assets','a:0:{}'),(8171,7490,'_elementor_edit_mode','builder'),(8172,7490,'_elementor_template_type','wp-page'),(8173,7490,'_elementor_version','3.15.3'),(8174,7490,'_elementor_pro_version','3.15.0'),(8175,7490,'_wp_page_template','default'),(8176,7490,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"Cisco Webex\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"NICE\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Verint\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Zoom\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8177,7490,'_elementor_page_assets','a:0:{}'),(8179,7491,'_elementor_edit_mode','builder'),(8180,7491,'_elementor_template_type','wp-page'),(8181,7491,'_elementor_version','3.15.3'),(8182,7491,'_elementor_pro_version','3.15.0'),(8183,7491,'_wp_page_template','default'),(8184,7491,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8185,7491,'_elementor_page_assets','a:0:{}'),(8188,7492,'_elementor_edit_mode','builder'),(8189,7492,'_elementor_template_type','wp-page'),(8190,7492,'_elementor_version','3.15.3'),(8191,7492,'_elementor_pro_version','3.15.0'),(8192,7492,'_wp_page_template','default'),(8193,7492,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"Audiocodes\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Dialogic\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"Ribbon\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Extreme Networks\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"HP\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8194,7492,'_elementor_page_assets','a:0:{}'),(8196,7493,'_elementor_edit_mode','builder'),(8197,7493,'_elementor_template_type','wp-page'),(8198,7493,'_elementor_version','3.15.3'),(8199,7493,'_elementor_pro_version','3.15.0'),(8200,7493,'_wp_page_template','default'),(8201,7493,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"Audiocodes\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Dialogic\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"Ribbon\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"Extreme Networks\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"HP\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8202,7493,'_elementor_page_assets','a:0:{}'),(8204,7494,'_elementor_edit_mode','builder'),(8205,7494,'_elementor_template_type','wp-page'),(8206,7494,'_elementor_version','3.15.3'),(8207,7494,'_elementor_pro_version','3.15.0'),(8208,7494,'_wp_page_template','default'),(8209,7494,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8210,7494,'_elementor_page_assets','a:0:{}'),(8213,7495,'_elementor_edit_mode','builder'),(8214,7495,'_elementor_template_type','wp-page'),(8215,7495,'_elementor_version','3.15.3'),(8216,7495,'_elementor_pro_version','3.15.0'),(8217,7495,'_wp_page_template','default'),(8218,7495,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8219,7495,'_elementor_page_assets','a:0:{}'),(8221,7496,'_elementor_edit_mode','builder'),(8222,7496,'_elementor_template_type','wp-page'),(8223,7496,'_elementor_version','3.15.3'),(8224,7496,'_elementor_pro_version','3.15.0'),(8225,7496,'_wp_page_template','default'),(8226,7496,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"Morphisec\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8227,7496,'_elementor_page_assets','a:0:{}'),(8229,7497,'_elementor_edit_mode','builder'),(8230,7497,'_elementor_template_type','wp-page'),(8231,7497,'_elementor_version','3.15.3'),(8232,7497,'_elementor_pro_version','3.15.0'),(8233,7497,'_wp_page_template','default'),(8234,7497,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8235,7497,'_elementor_page_assets','a:0:{}'),(8238,7498,'_elementor_edit_mode','builder'),(8239,7498,'_elementor_template_type','wp-page'),(8240,7498,'_elementor_version','3.15.3'),(8241,7498,'_elementor_pro_version','3.15.0'),(8242,7498,'_wp_page_template','default'),(8243,7498,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Teams\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Zoom Phone\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8244,7498,'_elementor_page_assets','a:0:{}'),(8246,7499,'_elementor_edit_mode','builder'),(8247,7499,'_elementor_template_type','wp-page'),(8248,7499,'_elementor_version','3.15.3'),(8249,7499,'_elementor_pro_version','3.15.0'),(8250,7499,'_wp_page_template','default'),(8251,7499,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Microsoft Teams\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Zoom Phone\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8252,7499,'_elementor_page_assets','a:0:{}'),(8254,7500,'_elementor_edit_mode','builder'),(8255,7500,'_elementor_template_type','wp-page'),(8256,7500,'_elementor_version','3.15.3'),(8257,7500,'_elementor_pro_version','3.15.0'),(8258,7500,'_wp_page_template','default'),(8259,7500,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8260,7500,'_elementor_page_assets','a:0:{}'),(8263,7501,'_elementor_edit_mode','builder'),(8264,7501,'_elementor_template_type','wp-page'),(8265,7501,'_elementor_version','3.15.3'),(8266,7501,'_elementor_pro_version','3.15.0'),(8267,7501,'_wp_page_template','default'),(8268,7501,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8269,7501,'_elementor_page_assets','a:0:{}'),(8270,7502,'_elementor_edit_mode','builder'),(8271,7502,'_elementor_template_type','wp-page'),(8272,7502,'_elementor_version','3.15.3'),(8273,7502,'_elementor_pro_version','3.15.0'),(8274,7502,'_wp_page_template','default'),(8275,7502,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"Cisco CM\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8276,7502,'_elementor_page_assets','a:0:{}'),(8277,7503,'_elementor_edit_mode','builder'),(8278,7503,'_elementor_template_type','wp-page'),(8279,7503,'_elementor_version','3.15.3'),(8280,7503,'_elementor_pro_version','3.15.0'),(8281,7503,'_wp_page_template','default'),(8282,7503,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8283,7503,'_elementor_page_assets','a:0:{}'),(8285,7504,'_wp_attached_file','2023/06/footer_bg.jpg'),(8286,7504,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:592;s:4:\"file\";s:21:\"2023/06/footer_bg.jpg\";s:8:\"filesize\";i:161281;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"footer_bg-300x93.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7525;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"footer_bg-1024x316.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16716;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"footer_bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7080;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"footer_bg-768x237.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12904;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"footer_bg-1536x474.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25245;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"footer_bg-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11601;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"footer_bg-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10399;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"footer_bg-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15129;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8287,7504,'_wp_attachment_image_alt','footer_bg'),(8288,7505,'_wp_page_template','elementor_theme'),(8289,7505,'_elementor_edit_mode','builder'),(8290,7505,'_elementor_template_type','wp-post'),(8291,7505,'_elementor_version','3.15.3'),(8292,7505,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8293,7505,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8294,7505,'_elementor_pro_version','3.15.0'),(8296,7506,'_wp_page_template','elementor_theme'),(8297,7506,'_elementor_edit_mode','builder'),(8298,7506,'_elementor_template_type','wp-post'),(8299,7506,'_elementor_version','3.15.3'),(8300,7506,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/footer_bg.jpeg\",\"id\":4739,\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8301,7506,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8302,7506,'_elementor_pro_version','3.15.0'),(8304,7507,'_wp_page_template','elementor_theme'),(8305,7507,'_elementor_edit_mode','builder'),(8306,7507,'_elementor_template_type','wp-post'),(8307,7507,'_elementor_version','3.15.3'),(8308,7507,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg.jpg\",\"id\":7504,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8309,7507,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8310,7507,'_elementor_pro_version','3.15.0'),(8314,7508,'_wp_page_template','elementor_theme'),(8315,7508,'_elementor_edit_mode','builder'),(8316,7508,'_elementor_template_type','wp-post'),(8317,7508,'_elementor_version','3.15.3'),(8318,7508,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg.jpg\",\"id\":7504,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8319,7508,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8320,7508,'_elementor_pro_version','3.15.0'),(8322,7509,'_wp_page_template','elementor_theme'),(8323,7509,'_elementor_edit_mode','builder'),(8324,7509,'_elementor_template_type','wp-post'),(8325,7509,'_elementor_version','3.15.3'),(8326,7509,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg.jpg\",\"id\":7504,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#18191D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8327,7509,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8328,7509,'_elementor_pro_version','3.15.0'),(8330,7510,'_wp_page_template','elementor_theme'),(8331,7510,'_elementor_edit_mode','builder'),(8332,7510,'_elementor_template_type','wp-post'),(8333,7510,'_elementor_version','3.15.3'),(8334,7510,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg.jpg\",\"id\":7504,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#5D5D5D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8335,7510,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8336,7510,'_elementor_pro_version','3.15.0'),(8340,7511,'_wp_page_template','elementor_theme'),(8341,7511,'_elementor_edit_mode','builder'),(8342,7511,'_elementor_template_type','wp-post'),(8343,7511,'_elementor_version','3.15.3'),(8344,7511,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg.jpg\",\"id\":7504,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#5D5D5D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8345,7511,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8346,7511,'_elementor_pro_version','3.15.0'),(8348,7512,'_wp_page_template','elementor_theme'),(8349,7512,'_elementor_edit_mode','builder'),(8350,7512,'_elementor_template_type','wp-post'),(8351,7512,'_elementor_version','3.15.3'),(8352,7512,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg.jpg\",\"id\":7504,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#5D5D5D\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8353,7512,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8354,7512,'_elementor_pro_version','3.15.0'),(8356,7513,'_wp_page_template','elementor_theme'),(8357,7513,'_elementor_edit_mode','builder'),(8358,7513,'_elementor_template_type','wp-post'),(8359,7513,'_elementor_version','3.15.3'),(8360,7513,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg.jpg\",\"id\":7504,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8361,7513,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8362,7513,'_elementor_pro_version','3.15.0'),(8366,7514,'_wp_attached_file','2023/06/footer_bg-1.jpg'),(8367,7514,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:592;s:4:\"file\";s:23:\"2023/06/footer_bg-1.jpg\";s:8:\"filesize\";i:148577;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"footer_bg-1-300x93.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10338;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"footer_bg-1-1024x316.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27375;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"footer_bg-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:9442;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"footer_bg-1-768x237.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20434;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"footer_bg-1-1536x474.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42315;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:23:\"footer_bg-1-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17863;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:23:\"footer_bg-1-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15635;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:23:\"footer_bg-1-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24326;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8368,7514,'_wp_attachment_image_alt','footer_bg'),(8369,7515,'_wp_page_template','elementor_theme'),(8370,7515,'_elementor_edit_mode','builder'),(8371,7515,'_elementor_template_type','wp-post'),(8372,7515,'_elementor_version','3.15.3'),(8373,7515,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg.jpg\",\"id\":7504,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8374,7515,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8375,7515,'_elementor_pro_version','3.15.0'),(8377,7516,'_wp_page_template','elementor_theme'),(8378,7516,'_elementor_edit_mode','builder'),(8379,7516,'_elementor_template_type','wp-post'),(8380,7516,'_elementor_version','3.15.3'),(8381,7516,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg.jpg\",\"id\":7504,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8382,7516,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8383,7516,'_elementor_pro_version','3.15.0'),(8385,7517,'_wp_page_template','elementor_theme'),(8386,7517,'_elementor_edit_mode','builder'),(8387,7517,'_elementor_template_type','wp-post'),(8388,7517,'_elementor_version','3.15.3'),(8389,7517,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8390,7517,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8391,7517,'_elementor_pro_version','3.15.0'),(8395,7518,'_wp_page_template','default'),(8396,7518,'_elementor_edit_mode','builder'),(8397,7518,'_elementor_template_type','wp-page'),(8398,7518,'_elementor_version','3.15.3'),(8399,7518,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(8400,7518,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(8401,7518,'_elementor_pro_version','3.15.0'),(8403,7519,'_wp_page_template','default'),(8404,7519,'_elementor_edit_mode','builder'),(8405,7519,'_elementor_template_type','wp-page'),(8406,7519,'_elementor_version','3.15.3'),(8407,7519,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Services related to financial record-keeping, bookkeeping, preparation.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(8408,7519,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(8409,7519,'_elementor_pro_version','3.15.0'),(8411,7520,'_wp_page_template','default'),(8412,7520,'_elementor_edit_mode','builder'),(8413,7520,'_elementor_template_type','wp-page'),(8414,7520,'_elementor_version','3.15.3'),(8415,7520,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(8416,7520,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(8417,7520,'_elementor_pro_version','3.15.0'),(8431,7522,'_wp_page_template','default'),(8432,7522,'_elementor_edit_mode','builder'),(8433,7522,'_elementor_template_type','wp-page'),(8434,7522,'_elementor_version','3.15.3'),(8435,7522,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8436,7522,'_elementor_page_assets','a:0:{}'),(8437,7522,'_elementor_pro_version','3.15.0'),(8438,7523,'_wp_page_template','default'),(8439,7523,'_elementor_edit_mode','builder'),(8440,7523,'_elementor_template_type','wp-page'),(8441,7523,'_elementor_version','3.15.3'),(8442,7523,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8443,7523,'_elementor_page_assets','a:0:{}'),(8444,7523,'_elementor_pro_version','3.15.0'),(8445,7524,'_wp_page_template','default'),(8446,7524,'_elementor_edit_mode','builder'),(8447,7524,'_elementor_template_type','wp-page'),(8448,7524,'_elementor_version','3.15.3'),(8449,7524,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8450,7524,'_elementor_page_assets','a:0:{}'),(8451,7524,'_elementor_pro_version','3.15.0'),(8454,7525,'_wp_page_template','default'),(8455,7525,'_elementor_edit_mode','builder'),(8456,7525,'_elementor_template_type','wp-page'),(8457,7525,'_elementor_version','3.15.3'),(8458,7525,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8459,7525,'_elementor_page_assets','a:0:{}'),(8460,7525,'_elementor_pro_version','3.15.0'),(8462,7526,'_wp_page_template','default'),(8463,7526,'_elementor_edit_mode','builder'),(8464,7526,'_elementor_template_type','wp-page'),(8465,7526,'_elementor_version','3.15.3'),(8466,7526,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8467,7526,'_elementor_page_assets','a:0:{}'),(8468,7526,'_elementor_pro_version','3.15.0'),(8470,7527,'_wp_page_template','default'),(8471,7527,'_elementor_edit_mode','builder'),(8472,7527,'_elementor_template_type','wp-page'),(8473,7527,'_elementor_version','3.15.3'),(8474,7527,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8475,7527,'_elementor_page_assets','a:0:{}'),(8476,7527,'_elementor_pro_version','3.15.0'),(8482,7528,'_elementor_edit_mode','builder'),(8483,7528,'_elementor_template_type','wp-page'),(8484,7528,'_elementor_version','3.15.3'),(8485,7528,'_elementor_pro_version','3.15.0'),(8486,7528,'_wp_page_template','default'),(8487,7528,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8488,7528,'_elementor_page_assets','a:0:{}'),(8490,7529,'_elementor_edit_mode','builder'),(8491,7529,'_elementor_template_type','wp-page'),(8492,7529,'_elementor_version','3.15.3'),(8493,7529,'_elementor_pro_version','3.15.0'),(8494,7529,'_wp_page_template','default');
INSERT INTO `wpsl_postmeta` VALUES (8495,7529,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8496,7529,'_elementor_page_assets','a:0:{}'),(8498,7530,'_elementor_edit_mode','builder'),(8499,7530,'_elementor_template_type','wp-page'),(8500,7530,'_elementor_version','3.15.3'),(8501,7530,'_elementor_pro_version','3.15.0'),(8502,7530,'_wp_page_template','default'),(8503,7530,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8504,7530,'_elementor_page_assets','a:0:{}'),(8507,7531,'_elementor_edit_mode','builder'),(8508,7531,'_elementor_template_type','wp-page'),(8509,7531,'_elementor_version','3.15.3'),(8510,7531,'_elementor_pro_version','3.15.0'),(8511,7531,'_wp_page_template','default'),(8512,7531,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8513,7531,'_elementor_page_assets','a:0:{}'),(8514,7532,'_elementor_edit_mode','builder'),(8515,7532,'_elementor_template_type','wp-page'),(8516,7532,'_elementor_version','3.15.3'),(8517,7532,'_elementor_pro_version','3.15.0'),(8518,7532,'_wp_page_template','default'),(8519,7532,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8520,7532,'_elementor_page_assets','a:0:{}'),(8521,7533,'_elementor_edit_mode','builder'),(8522,7533,'_elementor_template_type','wp-page'),(8523,7533,'_elementor_version','3.15.3'),(8524,7533,'_elementor_pro_version','3.15.0'),(8525,7533,'_wp_page_template','default'),(8526,7533,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8527,7533,'_elementor_page_assets','a:0:{}'),(8531,7534,'_elementor_edit_mode','builder'),(8532,7534,'_elementor_template_type','wp-page'),(8533,7534,'_elementor_version','3.15.3'),(8534,7534,'_elementor_pro_version','3.15.0'),(8535,7534,'_wp_page_template','default'),(8536,7534,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8537,7534,'_elementor_page_assets','a:0:{}'),(8539,7535,'_elementor_edit_mode','builder'),(8540,7535,'_elementor_template_type','wp-page'),(8541,7535,'_elementor_version','3.15.3'),(8542,7535,'_elementor_pro_version','3.15.0'),(8543,7535,'_wp_page_template','default'),(8544,7535,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8545,7535,'_elementor_page_assets','a:0:{}'),(8547,7536,'_elementor_edit_mode','builder'),(8548,7536,'_elementor_template_type','wp-page'),(8549,7536,'_elementor_version','3.15.3'),(8550,7536,'_elementor_pro_version','3.15.0'),(8551,7536,'_wp_page_template','default'),(8552,7536,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8553,7536,'_elementor_page_assets','a:0:{}'),(8557,7537,'_elementor_edit_mode','builder'),(8558,7537,'_elementor_template_type','wp-page'),(8559,7537,'_elementor_version','3.15.3'),(8560,7537,'_elementor_pro_version','3.15.0'),(8561,7537,'_wp_page_template','default'),(8562,7537,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8563,7537,'_elementor_page_assets','a:0:{}'),(8565,7538,'_elementor_edit_mode','builder'),(8566,7538,'_elementor_template_type','wp-page'),(8567,7538,'_elementor_version','3.15.3'),(8568,7538,'_elementor_pro_version','3.15.0'),(8569,7538,'_wp_page_template','default'),(8570,7538,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8571,7538,'_elementor_page_assets','a:0:{}'),(8573,7539,'_elementor_edit_mode','builder'),(8574,7539,'_elementor_template_type','wp-page'),(8575,7539,'_elementor_version','3.15.3'),(8576,7539,'_elementor_pro_version','3.15.0'),(8577,7539,'_wp_page_template','default'),(8578,7539,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8579,7539,'_elementor_page_assets','a:0:{}'),(8583,7540,'_elementor_edit_mode','builder'),(8584,7540,'_elementor_template_type','wp-page'),(8585,7540,'_elementor_version','3.15.3'),(8586,7540,'_elementor_pro_version','3.15.0'),(8587,7540,'_wp_page_template','default'),(8588,7540,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8589,7540,'_elementor_page_assets','a:0:{}'),(8591,7541,'_elementor_edit_mode','builder'),(8592,7541,'_elementor_template_type','wp-page'),(8593,7541,'_elementor_version','3.15.3'),(8594,7541,'_elementor_pro_version','3.15.0'),(8595,7541,'_wp_page_template','default'),(8596,7541,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur<\\/p>\",\"text_color\":\"#666666\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8597,7541,'_elementor_page_assets','a:0:{}'),(8599,7542,'_elementor_edit_mode','builder'),(8600,7542,'_elementor_template_type','wp-page'),(8601,7542,'_elementor_version','3.15.3'),(8602,7542,'_elementor_pro_version','3.15.0'),(8603,7542,'_wp_page_template','default'),(8604,7542,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8605,7542,'_elementor_page_assets','a:0:{}'),(8617,7549,'_wp_attached_file','2023/09/shutterstock_1912951960-scaled.jpg'),(8618,7549,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:42:\"2023/09/shutterstock_1912951960-scaled.jpg\";s:8:\"filesize\";i:600854;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1912951960-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21904;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1912951960-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1912951960-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13634;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1912951960-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83450;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"shutterstock_1912951960-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260792;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"shutterstock_1912951960-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:417273;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1912951960-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47077;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1912951960-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37137;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1912951960-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68047;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:26:\"Shutterstock / Golden Dayz\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:72:\"Copyright (c) 2021 Golden Dayz/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:66:\"Cloud,Service,Concept,With,Man,Finger,Touching,Digital,Screen,With\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:460:\"backdrop, background, circuit, cloud, code, communication, computer, computing, concept, connection, cyber, design, digital, double, download, draw, encryption, engineering, exposure, firewall, global, hands, icon, information, infrastructure, innovation, iot, landing, line, multi, networking, overlay, page, polygonal, press, protect, protection, push, remote, security, sketch, software, symbol, synchronization, system, tech, technology, touch, upload, web\";}}s:14:\"original_image\";s:27:\"shutterstock_1912951960.jpg\";}'),(8619,7549,'_wp_attachment_image_alt','Cloud'),(8620,7550,'_wp_attached_file','2023/09/shutterstock_1074687401-scaled.jpg'),(8621,7550,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:42:\"2023/09/shutterstock_1074687401-scaled.jpg\";s:8:\"filesize\";i:335611;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1074687401-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16346;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1074687401-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86903;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1074687401-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10532;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1074687401-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57317;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"shutterstock_1074687401-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156793;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"shutterstock_1074687401-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239630;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1074687401-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35753;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1074687401-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28998;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1074687401-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48482;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:27:\"Shutterstock / Black Salmon\";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:10:\"1074687401\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:5:\"asian\";i:1;s:4:\"best\";i:2;s:8:\"business\";i:3;s:6:\"client\";i:4;s:8:\"computer\";i:5;s:7:\"concept\";i:6;s:10:\"copy space\";i:7;s:8:\"customer\";i:8;s:9:\"excellent\";i:9;s:10:\"experience\";i:10;s:8:\"feedback\";i:11;s:6:\"female\";i:12;s:5:\"happy\";i:13;s:7:\"impress\";i:14;s:11:\"information\";i:15;s:8:\"japanese\";i:16;s:6:\"korean\";i:17;s:9:\"lifestyle\";i:18;s:9:\"marketing\";i:19;s:6:\"mobile\";i:20;s:5:\"model\";i:21;s:6:\"modern\";i:22;s:7:\"network\";i:23;s:6:\"online\";i:24;s:6:\"people\";i:25;s:5:\"photo\";i:26;s:7:\"popular\";i:27;s:8:\"positive\";i:28;s:7:\"product\";i:29;s:7:\"quality\";i:30;s:7:\"ranking\";i:31;s:6:\"rating\";i:32;s:4:\"read\";i:33;s:10:\"reputation\";i:34;s:6:\"review\";i:35;s:12:\"satisfaction\";i:36;s:7:\"service\";i:37;s:4:\"sign\";i:38;s:5:\"smile\";i:39;s:6:\"social\";i:40;s:6:\"speech\";i:41;s:5:\"stand\";i:42;s:6:\"survey\";i:43;s:10:\"technology\";i:44;s:4:\"thai\";i:45;s:6:\"trendy\";i:46;s:5:\"trust\";i:47;s:4:\"user\";i:48;s:4:\"wall\";i:49;s:5:\"woman\";}}s:14:\"original_image\";s:27:\"shutterstock_1074687401.jpg\";}'),(8622,7550,'_wp_attachment_image_alt','Customer Experience'),(8623,7551,'_wp_attached_file','2023/09/shutterstock_1062915266-scaled.jpg'),(8624,7551,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:42:\"2023/09/shutterstock_1062915266-scaled.jpg\";s:8:\"filesize\";i:749666;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1062915266-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22162;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1062915266-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171515;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1062915266-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10688;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1062915266-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106534;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"shutterstock_1062915266-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:328530;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"shutterstock_1062915266-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:521300;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1062915266-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55212;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1062915266-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47638;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1062915266-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96518;}}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:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"shutterstock_1062915266.jpg\";}'),(8625,7551,'_wp_attachment_image_alt','Infrastructure'),(8635,7553,'_wp_attached_file','2023/09/shutterstock_1669180291-scaled.jpg'),(8636,7553,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1363;s:4:\"file\";s:42:\"2023/09/shutterstock_1669180291-scaled.jpg\";s:8:\"filesize\";i:575075;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1669180291-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23383;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1669180291-1024x545.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1669180291-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14853;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1669180291-768x409.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90017;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"shutterstock_1669180291-1536x818.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263392;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"shutterstock_1669180291-2048x1091.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1091;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:413026;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1669180291-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48079;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1669180291-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41945;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1669180291-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85902;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:24:\"Shutterstock / TierneyMJ\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:70:\"Copyright (c) 2020 TierneyMJ/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:52:\"Security,Theme,With,A,Man,On,Blurred,City,Background\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:329:\"antivirus, blue, business, businessman, city, computer, concept, connection, cyber, digital, flowchart, hacker, hand, home, house, information, internet, light, lock, man, network, networking, online, people, person, pointing, pressing, privacy, protect, protection, safe, safety, secure, security, shine, tech, technology, virus\";}}s:14:\"original_image\";s:27:\"shutterstock_1669180291.jpg\";}'),(8637,7553,'_wp_attachment_image_alt','Security'),(8638,7554,'_wp_attached_file','2023/09/shutterstock_1851636526-scaled.jpg'),(8639,7554,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:42:\"2023/09/shutterstock_1851636526-scaled.jpg\";s:8:\"filesize\";i:526171;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1851636526-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22998;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1851636526-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127537;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1851636526-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13390;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1851636526-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83014;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"shutterstock_1851636526-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237192;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"shutterstock_1851636526-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:369432;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1851636526-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39870;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1851636526-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36386;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:35:\"shutterstock_1851636526-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70814;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:20:\"Shutterstock / Elnur\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:66:\"Copyright (c) 2020 Elnur/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:52:\"Concept,Of,Remote,Video,Conferencing,During,Pandemic\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:494:\"business, businessman, call, camera, chat, chatting, collaboration, communication, computer, conference, conferencing, conversation, discussing, discussion, education, group, home, internet, interview, laptop, learning, man, meeting, mobile, monitor, online, phone, presentation, quarantine, remote, screen, seminar, smartphone, student, tablet, talking, team, teamwork, technology, teleconference, telepresence, training, video, videoconference, videoconferencing, virtual, webcam, woman, work\";}}s:14:\"original_image\";s:27:\"shutterstock_1851636526.jpg\";}'),(8640,7554,'_wp_attachment_image_alt','Unified Communications'),(8641,7555,'_wp_page_template','default'),(8642,7555,'_elementor_edit_mode','builder'),(8643,7555,'_elementor_template_type','wp-page'),(8644,7555,'_elementor_version','3.15.3'),(8645,7555,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(8646,7555,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(8647,7555,'_elementor_pro_version','3.15.0'),(8648,7556,'_wp_page_template','default'),(8649,7556,'_elementor_edit_mode','builder'),(8650,7556,'_elementor_template_type','wp-page'),(8651,7556,'_elementor_version','3.15.3'),(8652,7556,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/service_1-1.jpeg\",\"id\":4881,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(8653,7556,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(8654,7556,'_elementor_pro_version','3.15.0'),(8655,7557,'_wp_page_template','default'),(8656,7557,'_elementor_edit_mode','builder'),(8657,7557,'_elementor_template_type','wp-page'),(8658,7557,'_elementor_version','3.15.3'),(8659,7557,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(8660,7557,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(8661,7557,'_elementor_pro_version','3.15.0'),(8663,7558,'_wp_page_template','default'),(8664,7558,'_elementor_edit_mode','builder'),(8665,7558,'_elementor_template_type','wp-page'),(8666,7558,'_elementor_version','3.15.3'),(8667,7558,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8668,7558,'_elementor_page_assets','a:0:{}'),(8669,7558,'_elementor_pro_version','3.15.0'),(8671,7559,'_wp_page_template','default'),(8672,7559,'_elementor_edit_mode','builder'),(8673,7559,'_elementor_template_type','wp-page'),(8674,7559,'_elementor_version','3.15.3'),(8675,7559,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8676,7559,'_elementor_page_assets','a:0:{}'),(8677,7559,'_elementor_pro_version','3.15.0'),(8679,7560,'_wp_page_template','default'),(8680,7560,'_elementor_edit_mode','builder'),(8681,7560,'_elementor_template_type','wp-page'),(8682,7560,'_elementor_version','3.15.3'),(8683,7560,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8684,7560,'_elementor_page_assets','a:0:{}'),(8685,7560,'_elementor_pro_version','3.15.0'),(8688,7561,'_elementor_edit_mode','builder'),(8689,7561,'_elementor_template_type','wp-page'),(8690,7561,'_elementor_version','3.15.3'),(8691,7561,'_elementor_pro_version','3.15.0'),(8692,7561,'_wp_page_template','default'),(8693,7561,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8694,7561,'_elementor_page_assets','a:0:{}'),(8696,7562,'_elementor_edit_mode','builder'),(8697,7562,'_elementor_template_type','wp-page'),(8698,7562,'_elementor_version','3.15.3'),(8699,7562,'_elementor_pro_version','3.15.0'),(8700,7562,'_wp_page_template','default'),(8701,7562,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8702,7562,'_elementor_page_assets','a:0:{}'),(8704,7563,'_elementor_edit_mode','builder'),(8705,7563,'_elementor_template_type','wp-page'),(8706,7563,'_elementor_version','3.15.3'),(8707,7563,'_elementor_pro_version','3.15.0'),(8708,7563,'_wp_page_template','default'),(8709,7563,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8710,7563,'_elementor_page_assets','a:0:{}'),(8713,7564,'_elementor_edit_mode','builder'),(8714,7564,'_elementor_template_type','wp-page'),(8715,7564,'_elementor_version','3.15.3'),(8716,7564,'_elementor_pro_version','3.15.0'),(8717,7564,'_wp_page_template','default'),(8718,7564,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8719,7564,'_elementor_page_assets','a:0:{}'),(8720,7565,'_elementor_edit_mode','builder'),(8721,7565,'_elementor_template_type','wp-page'),(8722,7565,'_elementor_version','3.15.3'),(8723,7565,'_elementor_pro_version','3.15.0'),(8724,7565,'_wp_page_template','default'),(8725,7565,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8726,7565,'_elementor_page_assets','a:0:{}'),(8727,7566,'_elementor_edit_mode','builder'),(8728,7566,'_elementor_template_type','wp-page'),(8729,7566,'_elementor_version','3.15.3'),(8730,7566,'_elementor_pro_version','3.15.0'),(8731,7566,'_wp_page_template','default'),(8732,7566,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8733,7566,'_elementor_page_assets','a:0:{}'),(8735,7567,'_elementor_edit_mode','builder'),(8736,7567,'_elementor_template_type','wp-page'),(8737,7567,'_elementor_version','3.15.3'),(8738,7567,'_elementor_pro_version','3.15.0'),(8739,7567,'_wp_page_template','default'),(8740,7567,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8741,7567,'_elementor_page_assets','a:0:{}'),(8743,7568,'_elementor_edit_mode','builder'),(8744,7568,'_elementor_template_type','wp-page'),(8745,7568,'_elementor_version','3.15.3'),(8746,7568,'_elementor_pro_version','3.15.0'),(8747,7568,'_wp_page_template','default'),(8748,7568,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8749,7568,'_elementor_page_assets','a:0:{}'),(8751,7569,'_elementor_edit_mode','builder'),(8752,7569,'_elementor_template_type','wp-page'),(8753,7569,'_elementor_version','3.15.3'),(8754,7569,'_elementor_pro_version','3.15.0'),(8755,7569,'_wp_page_template','default'),(8756,7569,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8757,7569,'_elementor_page_assets','a:0:{}'),(8760,7570,'_elementor_edit_mode','builder'),(8761,7570,'_elementor_template_type','wp-page'),(8762,7570,'_elementor_version','3.15.3'),(8763,7570,'_elementor_pro_version','3.15.0'),(8764,7570,'_wp_page_template','default'),(8765,7570,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8766,7570,'_elementor_page_assets','a:0:{}'),(8768,7571,'_elementor_edit_mode','builder'),(8769,7571,'_elementor_template_type','wp-page'),(8770,7571,'_elementor_version','3.15.3'),(8771,7571,'_elementor_pro_version','3.15.0'),(8772,7571,'_wp_page_template','default'),(8773,7571,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8774,7571,'_elementor_page_assets','a:0:{}'),(8776,7572,'_elementor_edit_mode','builder'),(8777,7572,'_elementor_template_type','wp-page'),(8778,7572,'_elementor_version','3.15.3'),(8779,7572,'_elementor_pro_version','3.15.0'),(8780,7572,'_wp_page_template','default'),(8781,7572,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8782,7572,'_elementor_page_assets','a:0:{}'),(8786,7573,'_elementor_edit_mode','builder'),(8787,7573,'_elementor_template_type','wp-page'),(8788,7573,'_elementor_version','3.15.3'),(8789,7573,'_elementor_pro_version','3.15.0'),(8790,7573,'_wp_page_template','default'),(8791,7573,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8792,7573,'_elementor_page_assets','a:0:{}'),(8794,7574,'_elementor_edit_mode','builder'),(8795,7574,'_elementor_template_type','wp-page'),(8796,7574,'_elementor_version','3.15.3'),(8797,7574,'_elementor_pro_version','3.15.0'),(8798,7574,'_wp_page_template','default'),(8799,7574,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-1.jpeg\",\"id\":4782,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8800,7574,'_elementor_page_assets','a:0:{}'),(8802,7575,'_elementor_edit_mode','builder'),(8803,7575,'_elementor_template_type','wp-page'),(8804,7575,'_elementor_version','3.15.3'),(8805,7575,'_elementor_pro_version','3.15.0'),(8806,7575,'_wp_page_template','default'),(8807,7575,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8808,7575,'_elementor_page_assets','a:0:{}'),(8821,7577,'_elementor_edit_mode','builder'),(8822,7577,'_elementor_template_type','wp-page'),(8823,7577,'_elementor_version','3.15.3'),(8824,7577,'_elementor_pro_version','3.15.0'),(8825,7577,'_wp_page_template','default'),(8826,7577,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8827,7577,'_elementor_page_assets','a:0:{}'),(8829,7578,'_elementor_edit_mode','builder'),(8830,7578,'_elementor_template_type','wp-page'),(8831,7578,'_elementor_version','3.15.3'),(8832,7578,'_elementor_pro_version','3.15.0'),(8833,7578,'_wp_page_template','default'),(8834,7578,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8835,7578,'_elementor_page_assets','a:0:{}'),(8837,7579,'_elementor_edit_mode','builder'),(8838,7579,'_elementor_template_type','wp-page'),(8839,7579,'_elementor_version','3.15.3'),(8840,7579,'_elementor_pro_version','3.15.0'),(8841,7579,'_wp_page_template','default'),(8842,7579,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8843,7579,'_elementor_page_assets','a:0:{}'),(8850,7306,'_wp_old_date','2023-09-18'),(8851,7314,'_wp_old_date','2023-09-18'),(8852,7321,'_wp_old_date','2023-09-18'),(8853,7299,'_wp_old_date','2023-09-18'),(8856,7581,'_wp_attached_file','2023/09/Untitled-1-04.png'),(8857,7581,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:417;s:6:\"height\";i:417;s:4:\"file\";s:25:\"2023/09/Untitled-1-04.png\";s:8:\"filesize\";i:6499;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Untitled-1-04-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5467;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Untitled-1-04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2559;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-04-354x417.png\";s:5:\"width\";i:354;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4453;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-04-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6582;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-04-417x400.png\";s:5:\"width\";i:417;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4821;}}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:{}}}'),(8858,7581,'_wp_attachment_image_alt','cloud-icon'),(8859,7582,'_wp_attached_file','2023/09/Untitled-1-05.png'),(8860,7582,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:417;s:6:\"height\";i:417;s:4:\"file\";s:25:\"2023/09/Untitled-1-05.png\";s:8:\"filesize\";i:9547;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Untitled-1-05-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8746;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Untitled-1-05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4073;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-05-354x417.png\";s:5:\"width\";i:354;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6872;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-05-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10556;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-05-417x400.png\";s:5:\"width\";i:417;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7078;}}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:{}}}'),(8861,7582,'_wp_attachment_image_alt','customer-experience-icons'),(8862,7583,'_wp_attached_file','2023/09/Untitled-1-01.png'),(8863,7583,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:417;s:6:\"height\";i:417;s:4:\"file\";s:25:\"2023/09/Untitled-1-01.png\";s:8:\"filesize\";i:10876;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Untitled-1-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10125;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Untitled-1-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4645;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-01-354x417.png\";s:5:\"width\";i:354;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8061;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-01-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12155;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-01-417x400.png\";s:5:\"width\";i:417;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8588;}}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:{}}}'),(8864,7583,'_wp_attachment_image_alt','infrastructure-icon'),(8865,7584,'_wp_attached_file','2023/09/Untitled-1-03.png'),(8866,7584,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:417;s:6:\"height\";i:417;s:4:\"file\";s:25:\"2023/09/Untitled-1-03.png\";s:8:\"filesize\";i:6471;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Untitled-1-03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6940;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Untitled-1-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3116;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-03-354x417.png\";s:5:\"width\";i:354;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4170;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-03-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8494;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-03-417x400.png\";s:5:\"width\";i:417;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4296;}}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:{}}}'),(8867,7584,'_wp_attachment_image_alt','security-icon'),(8868,7585,'_wp_attached_file','2023/09/Untitled-1-02.png'),(8869,7585,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:417;s:6:\"height\";i:417;s:4:\"file\";s:25:\"2023/09/Untitled-1-02.png\";s:8:\"filesize\";i:6492;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Untitled-1-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6341;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Untitled-1-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2773;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-02-354x417.png\";s:5:\"width\";i:354;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4112;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-02-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8025;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"Untitled-1-02-417x400.png\";s:5:\"width\";i:417;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4122;}}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:{}}}'),(8870,7585,'_wp_attachment_image_alt','Unified Communications-icon'),(8871,7586,'_wp_page_template','default'),(8872,7586,'_elementor_edit_mode','builder'),(8873,7586,'_elementor_template_type','wp-page'),(8874,7586,'_elementor_version','3.15.3'),(8875,7586,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(8876,7586,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(8877,7586,'_elementor_pro_version','3.15.0'),(8879,7587,'_wp_page_template','default'),(8880,7587,'_elementor_edit_mode','builder'),(8881,7587,'_elementor_template_type','wp-page'),(8882,7587,'_elementor_version','3.15.3'),(8883,7587,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(8884,7587,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(8885,7587,'_elementor_pro_version','3.15.0'),(8887,7588,'_wp_page_template','default'),(8888,7588,'_elementor_edit_mode','builder'),(8889,7588,'_elementor_template_type','wp-page'),(8890,7588,'_elementor_version','3.15.3'),(8891,7588,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(8892,7588,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(8893,7588,'_elementor_pro_version','3.15.0'),(8920,7592,'_wpcode_auto_insert','1'),(8921,7592,'_wpcode_auto_insert_number','1'),(8922,7592,'_wpcode_conditional_logic_enabled',''),(8923,7592,'_wpcode_priority','1'),(8924,7592,'_wpcode_note',''),(8925,7592,'_wpcode_location_extra',''),(8926,7592,'_wpcode_shortcode_attributes','a:0:{}'),(8927,7592,'_wpcode_conditional_logic','a:0:{}'),(8928,7593,'_wp_page_template','default'),(8929,7593,'_elementor_edit_mode','builder'),(8930,7593,'_elementor_template_type','wp-page'),(8931,7593,'_elementor_version','3.15.3'),(8932,7593,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8933,7593,'_elementor_page_assets','a:0:{}'),(8934,7593,'_elementor_pro_version','3.15.0'),(8936,7594,'_wp_page_template','default'),(8937,7594,'_elementor_edit_mode','builder'),(8938,7594,'_elementor_template_type','wp-page'),(8939,7594,'_elementor_version','3.15.3'),(8940,7594,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8941,7594,'_elementor_page_assets','a:0:{}'),(8942,7594,'_elementor_pro_version','3.15.0'),(8944,7595,'_wp_page_template','default'),(8945,7595,'_elementor_edit_mode','builder'),(8946,7595,'_elementor_template_type','wp-page'),(8947,7595,'_elementor_version','3.15.3'),(8948,7595,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8949,7595,'_elementor_page_assets','a:0:{}'),(8950,7595,'_elementor_pro_version','3.15.0'),(8953,7596,'_wp_attached_file','2023/09/Hewlett_Packard_Enterprise_logo.png'),(8954,7596,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:418;s:4:\"file\";s:43:\"2023/09/Hewlett_Packard_Enterprise_logo.png\";s:8:\"filesize\";i:81885;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Hewlett_Packard_Enterprise_logo-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Hewlett_Packard_Enterprise_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7933;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Hewlett_Packard_Enterprise_logo-768x321.png\";s:5:\"width\";i:768;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42973;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:43:\"Hewlett_Packard_Enterprise_logo-354x418.png\";s:5:\"width\";i:354;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30970;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:43:\"Hewlett_Packard_Enterprise_logo-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24668;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:43:\"Hewlett_Packard_Enterprise_logo-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52644;}}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:{}}}'),(8955,7596,'_wp_attachment_image_alt','Hewlett_Packard_Enterprise_logo'),(8956,7597,'_elementor_edit_mode','builder'),(8957,7597,'_elementor_template_type','wp-page'),(8958,7597,'_elementor_version','3.15.3'),(8959,7597,'_elementor_pro_version','3.15.0'),(8960,7597,'_wp_page_template','default'),(8961,7597,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8962,7597,'_elementor_page_assets','a:0:{}'),(8964,7598,'_elementor_edit_mode','builder'),(8965,7598,'_elementor_template_type','wp-page'),(8966,7598,'_elementor_version','3.15.3'),(8967,7598,'_elementor_pro_version','3.15.0'),(8968,7598,'_wp_page_template','default'),(8969,7598,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8970,7598,'_elementor_page_assets','a:0:{}'),(8972,7599,'_elementor_edit_mode','builder'),(8973,7599,'_elementor_template_type','wp-page'),(8974,7599,'_elementor_version','3.15.3'),(8975,7599,'_elementor_pro_version','3.15.0'),(8976,7599,'_wp_page_template','default'),(8977,7599,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Hewlett_Packard_Enterprise_logo.png\",\"id\":7596,\"size\":\"\",\"alt\":\"Hewlett_Packard_Enterprise_logo\",\"source\":\"library\"}}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8978,7599,'_elementor_page_assets','a:0:{}'),(8981,7600,'_elementor_edit_mode','builder'),(8982,7600,'_elementor_template_type','wp-page'),(8983,7600,'_elementor_version','3.15.3'),(8984,7600,'_elementor_pro_version','3.15.0'),(8985,7600,'_wp_page_template','default'),(8986,7600,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8987,7600,'_elementor_page_assets','a:0:{}'),(8989,7601,'_elementor_edit_mode','builder'),(8990,7601,'_elementor_template_type','wp-page'),(8991,7601,'_elementor_version','3.15.3'),(8992,7601,'_elementor_pro_version','3.15.0'),(8993,7601,'_wp_page_template','default'),(8994,7601,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-3.png\",\"id\":5660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8995,7601,'_elementor_page_assets','a:0:{}'),(8997,7602,'_elementor_edit_mode','builder'),(8998,7602,'_elementor_template_type','wp-page'),(8999,7602,'_elementor_version','3.15.3'),(9000,7602,'_elementor_pro_version','3.15.0'),(9001,7602,'_wp_page_template','default'),(9002,7602,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9003,7602,'_elementor_page_assets','a:0:{}'),(9045,7612,'_wp_attached_file','2023/09/Mediamodifier-Design-6.svg'),(9046,7612,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:11928;s:5:\"width\";i:1200;s:6:\"height\";i:800;}'),(9048,7612,'_wp_attachment_image_alt','Amazon_Web_Services-Logo.wine'),(9049,7613,'_wp_page_template','default'),(9050,7613,'_elementor_edit_mode','builder'),(9051,7613,'_elementor_template_type','wp-page'),(9052,7613,'_elementor_version','3.15.3'),(9053,7613,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9054,7613,'_elementor_page_assets','a:0:{}'),(9055,7613,'_elementor_pro_version','3.15.0'),(9056,7614,'_wp_page_template','default'),(9057,7614,'_elementor_edit_mode','builder'),(9058,7614,'_elementor_template_type','wp-page'),(9059,7614,'_elementor_version','3.15.3'),(9060,7614,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Amazon_Web_Services-Logo.wine_.svg\",\"id\":7346,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9061,7614,'_elementor_page_assets','a:0:{}'),(9062,7614,'_elementor_pro_version','3.15.0'),(9063,7615,'_wp_page_template','default'),(9064,7615,'_elementor_edit_mode','builder'),(9065,7615,'_elementor_template_type','wp-page'),(9066,7615,'_elementor_version','3.15.3'),(9067,7615,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9068,7615,'_elementor_page_assets','a:0:{}'),(9069,7615,'_elementor_pro_version','3.15.0'),(9074,7618,'_wp_page_template','default'),(9075,7618,'_elementor_edit_mode','builder'),(9076,7618,'_elementor_template_type','wp-page'),(9077,7618,'_elementor_version','3.15.3'),(9078,7618,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9079,7618,'_elementor_page_assets','a:0:{}'),(9080,7618,'_elementor_pro_version','3.15.0'),(9082,7619,'_wp_page_template','default'),(9083,7619,'_elementor_edit_mode','builder'),(9084,7619,'_elementor_template_type','wp-page'),(9085,7619,'_elementor_version','3.15.3'),(9086,7619,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9087,7619,'_elementor_page_assets','a:0:{}'),(9088,7619,'_elementor_pro_version','3.15.0'),(9090,7620,'_wp_page_template','default'),(9091,7620,'_elementor_edit_mode','builder'),(9092,7620,'_elementor_template_type','wp-page'),(9093,7620,'_elementor_version','3.15.3'),(9094,7620,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9095,7620,'_elementor_page_assets','a:0:{}'),(9096,7620,'_elementor_pro_version','3.15.0'),(9100,7621,'_wp_page_template','default'),(9101,7621,'_elementor_edit_mode','builder'),(9102,7621,'_elementor_template_type','wp-page'),(9103,7621,'_elementor_version','3.15.3'),(9104,7621,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9105,7621,'_elementor_page_assets','a:0:{}'),(9106,7621,'_elementor_pro_version','3.15.0'),(9108,7622,'_wp_page_template','default'),(9109,7622,'_elementor_edit_mode','builder'),(9110,7622,'_elementor_template_type','wp-page'),(9111,7622,'_elementor_version','3.15.3'),(9112,7622,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9113,7622,'_elementor_page_assets','a:0:{}'),(9114,7622,'_elementor_pro_version','3.15.0'),(9116,7623,'_wp_page_template','default'),(9117,7623,'_elementor_edit_mode','builder'),(9118,7623,'_elementor_template_type','wp-page'),(9119,7623,'_elementor_version','3.15.3'),(9120,7623,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9121,7623,'_elementor_page_assets','a:0:{}'),(9122,7623,'_elementor_pro_version','3.15.0'),(9126,7624,'_elementor_edit_mode','builder'),(9127,7624,'_elementor_template_type','wp-page'),(9128,7624,'_elementor_version','3.15.3'),(9129,7624,'_elementor_pro_version','3.15.0'),(9130,7624,'_wp_page_template','default'),(9131,7624,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9132,7624,'_elementor_page_assets','a:0:{}'),(9134,7625,'_elementor_edit_mode','builder'),(9135,7625,'_elementor_template_type','wp-page'),(9136,7625,'_elementor_version','3.15.3'),(9137,7625,'_elementor_pro_version','3.15.0'),(9138,7625,'_wp_page_template','default'),(9139,7625,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9140,7625,'_elementor_page_assets','a:0:{}'),(9142,7626,'_elementor_edit_mode','builder'),(9143,7626,'_elementor_template_type','wp-page'),(9144,7626,'_elementor_version','3.15.3'),(9145,7626,'_elementor_pro_version','3.15.0'),(9146,7626,'_wp_page_template','default'),(9147,7626,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9148,7626,'_elementor_page_assets','a:0:{}'),(9152,7627,'_elementor_edit_mode','builder'),(9153,7627,'_elementor_template_type','wp-page'),(9154,7627,'_elementor_version','3.15.3'),(9155,7627,'_elementor_pro_version','3.15.0'),(9156,7627,'_wp_page_template','default'),(9157,7627,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Hewlett_Packard_Enterprise_logo.png\",\"id\":7596,\"size\":\"\",\"alt\":\"Hewlett_Packard_Enterprise_logo\",\"source\":\"library\"}}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9158,7627,'_elementor_page_assets','a:0:{}'),(9160,7628,'_elementor_edit_mode','builder'),(9161,7628,'_elementor_template_type','wp-page'),(9162,7628,'_elementor_version','3.15.3'),(9163,7628,'_elementor_pro_version','3.15.0'),(9164,7628,'_wp_page_template','default'),(9165,7628,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Hewlett_Packard_Enterprise_logo.png\",\"id\":7596,\"size\":\"\",\"alt\":\"Hewlett_Packard_Enterprise_logo\",\"source\":\"library\"}}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9166,7628,'_elementor_page_assets','a:0:{}'),(9168,7629,'_elementor_edit_mode','builder'),(9169,7629,'_elementor_template_type','wp-page'),(9170,7629,'_elementor_version','3.15.3'),(9171,7629,'_elementor_pro_version','3.15.0'),(9172,7629,'_wp_page_template','default');
INSERT INTO `wpsl_postmeta` VALUES (9173,7629,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Hewlett_Packard_Enterprise_logo.png\",\"id\":7596,\"size\":\"\",\"alt\":\"Hewlett_Packard_Enterprise_logo\",\"source\":\"library\"}}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9174,7629,'_elementor_page_assets','a:0:{}'),(9178,7630,'_elementor_edit_mode','builder'),(9179,7630,'_elementor_template_type','wp-page'),(9180,7630,'_elementor_version','3.15.3'),(9181,7630,'_elementor_pro_version','3.15.0'),(9182,7630,'_wp_page_template','default'),(9183,7630,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9184,7630,'_elementor_page_assets','a:0:{}'),(9186,7631,'_elementor_edit_mode','builder'),(9187,7631,'_elementor_template_type','wp-page'),(9188,7631,'_elementor_version','3.15.3'),(9189,7631,'_elementor_pro_version','3.15.0'),(9190,7631,'_wp_page_template','default'),(9191,7631,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9192,7631,'_elementor_page_assets','a:0:{}'),(9194,7632,'_elementor_edit_mode','builder'),(9195,7632,'_elementor_template_type','wp-page'),(9196,7632,'_elementor_version','3.15.3'),(9197,7632,'_elementor_pro_version','3.15.0'),(9198,7632,'_wp_page_template','default'),(9199,7632,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9200,7632,'_elementor_page_assets','a:0:{}'),(9204,7633,'_wp_page_template','default'),(9205,7633,'_elementor_edit_mode','builder'),(9206,7633,'_elementor_template_type','wp-page'),(9207,7633,'_elementor_version','3.15.3'),(9208,7633,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9209,7633,'_elementor_page_assets','a:0:{}'),(9210,7633,'_elementor_pro_version','3.15.0'),(9212,7634,'_wp_page_template','default'),(9213,7634,'_elementor_edit_mode','builder'),(9214,7634,'_elementor_template_type','wp-page'),(9215,7634,'_elementor_version','3.15.3'),(9216,7634,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9217,7634,'_elementor_page_assets','a:0:{}'),(9218,7634,'_elementor_pro_version','3.15.0'),(9220,7635,'_wp_page_template','default'),(9221,7635,'_elementor_edit_mode','builder'),(9222,7635,'_elementor_template_type','wp-page'),(9223,7635,'_elementor_version','3.15.3'),(9224,7635,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9225,7635,'_elementor_page_assets','a:0:{}'),(9226,7635,'_elementor_pro_version','3.15.0'),(9230,7636,'_wp_page_template','default'),(9231,7636,'_elementor_edit_mode','builder'),(9232,7636,'_elementor_template_type','wp-page'),(9233,7636,'_elementor_version','3.15.3'),(9234,7636,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9235,7636,'_elementor_page_assets','a:0:{}'),(9236,7636,'_elementor_pro_version','3.15.0'),(9238,7637,'_wp_page_template','default'),(9239,7637,'_elementor_edit_mode','builder'),(9240,7637,'_elementor_template_type','wp-page'),(9241,7637,'_elementor_version','3.15.3'),(9242,7637,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9243,7637,'_elementor_page_assets','a:0:{}'),(9244,7637,'_elementor_pro_version','3.15.0'),(9246,7638,'_wp_page_template','default'),(9247,7638,'_elementor_edit_mode','builder'),(9248,7638,'_elementor_template_type','wp-page'),(9249,7638,'_elementor_version','3.15.3'),(9250,7638,'_elementor_data','[{\"id\":\"a80ca4f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f155774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"09b98f6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ce32c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa661c\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e02d8fb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"1d122ec\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4fd3fcd\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e8326a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0dc2b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae07e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738275b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services on the cloud have become\\nan integral part of modern businesses\' IT strategies. These services offer\\norganizations the opportunity to offload the complexity of maintaining and\\nmonitoring their cloud infrastructure, allowing them to focus on their core\\nbusiness objectives. With managed services, ESIGO take on tasks such as server\\nprovisioning, security, patch management, and performance optimization,\\nensuring that applications run smoothly and securely. This approach not only\\nenhances operational efficiency but also provides scalability and\\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\\nmanaged cloud services offer a range of specialized solutions, from database\\nmanagement to AI and machine learning services, enabling your businesses to\\nharness the full potential of cloud technology while minimizing the burden of\\nday-to-day management.<\\/span><\\/span><span lang=\\\"EN-SG\\\"><o:p><\\/o:p><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1545a06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf285d\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Mediamodifier-Design-6.svg\",\"id\":7612,\"size\":\"\",\"alt\":\"Amazon_Web_Services-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Google-Logo.wine_.svg\",\"id\":7354,\"size\":\"\",\"alt\":\"Google-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"d8e9577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"658af76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"726fe0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5b899\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b3de587\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"e339018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee82756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f4aaf7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7555598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d3a2cc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"836d48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54d7671\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a27c061\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_2.jpeg\",\"id\":4725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d040ceb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23e4bb8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"adcc840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"677a12d\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_section_label\":\"Book Now\",\"bizmax_section_title\":\"Feel Free to Get in Touch <br> with Ralph\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f2cb5f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8be84b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"ed5b775\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5467\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9251,7638,'_elementor_page_assets','a:0:{}'),(9252,7638,'_elementor_pro_version','3.15.0'),(9254,1978,'_elementor_controls_usage','a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";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:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}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:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:19:\"bizmax_stitle_style\";i:1;s:22:\"bizmax_stitle_position\";i:1;s:19:\"bizmax_stitle_color\";i:1;s:20:\"bizmax_section_label\";i:1;s:20:\"bizmax_section_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(9256,7639,'_elementor_edit_mode','builder'),(9257,7639,'_elementor_template_type','wp-page'),(9258,7639,'_elementor_version','3.15.3'),(9259,7639,'_elementor_pro_version','3.15.0'),(9260,7639,'_wp_page_template','default'),(9261,7639,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9262,7639,'_elementor_page_assets','a:0:{}'),(9264,7640,'_elementor_edit_mode','builder'),(9265,7640,'_elementor_template_type','wp-page'),(9266,7640,'_elementor_version','3.15.3'),(9267,7640,'_elementor_pro_version','3.15.0'),(9268,7640,'_wp_page_template','default'),(9269,7640,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9270,7640,'_elementor_page_assets','a:0:{}'),(9272,7641,'_elementor_edit_mode','builder'),(9273,7641,'_elementor_template_type','wp-page'),(9274,7641,'_elementor_version','3.15.3'),(9275,7641,'_elementor_pro_version','3.15.0'),(9276,7641,'_wp_page_template','default'),(9277,7641,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9278,7641,'_elementor_page_assets','a:0:{}'),(9282,7642,'_elementor_edit_mode','builder'),(9283,7642,'_elementor_template_type','wp-page'),(9284,7642,'_elementor_version','3.15.3'),(9285,7642,'_elementor_pro_version','3.15.0'),(9286,7642,'_wp_page_template','default'),(9287,7642,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Hewlett_Packard_Enterprise_logo.png\",\"id\":7596,\"size\":\"\",\"alt\":\"Hewlett_Packard_Enterprise_logo\",\"source\":\"library\"}}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9288,7642,'_elementor_page_assets','a:0:{}'),(9290,7643,'_elementor_edit_mode','builder'),(9291,7643,'_elementor_template_type','wp-page'),(9292,7643,'_elementor_version','3.15.3'),(9293,7643,'_elementor_pro_version','3.15.0'),(9294,7643,'_wp_page_template','default'),(9295,7643,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Hewlett_Packard_Enterprise_logo.png\",\"id\":7596,\"size\":\"\",\"alt\":\"Hewlett_Packard_Enterprise_logo\",\"source\":\"library\"}}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9296,7643,'_elementor_page_assets','a:0:{}'),(9298,7644,'_elementor_edit_mode','builder'),(9299,7644,'_elementor_template_type','wp-page'),(9300,7644,'_elementor_version','3.15.3'),(9301,7644,'_elementor_pro_version','3.15.0'),(9302,7644,'_wp_page_template','default'),(9303,7644,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Hewlett_Packard_Enterprise_logo.png\",\"id\":7596,\"size\":\"\",\"alt\":\"Hewlett_Packard_Enterprise_logo\",\"source\":\"library\"}}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9304,7644,'_elementor_page_assets','a:0:{}'),(9306,7300,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}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:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(9308,7645,'_elementor_edit_mode','builder'),(9309,7645,'_elementor_template_type','wp-page'),(9310,7645,'_elementor_version','3.15.3'),(9311,7645,'_elementor_pro_version','3.15.0'),(9312,7645,'_wp_page_template','default'),(9313,7645,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9314,7645,'_elementor_page_assets','a:0:{}'),(9316,7646,'_elementor_edit_mode','builder'),(9317,7646,'_elementor_template_type','wp-page'),(9318,7646,'_elementor_version','3.15.3'),(9319,7646,'_elementor_pro_version','3.15.0'),(9320,7646,'_wp_page_template','default'),(9321,7646,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9322,7646,'_elementor_page_assets','a:0:{}'),(9324,7647,'_elementor_edit_mode','builder'),(9325,7647,'_elementor_template_type','wp-page'),(9326,7647,'_elementor_version','3.15.3'),(9327,7647,'_elementor_pro_version','3.15.0'),(9328,7647,'_wp_page_template','default'),(9329,7647,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9330,7647,'_elementor_page_assets','a:0:{}'),(9332,7307,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(9334,7648,'_elementor_edit_mode','builder'),(9335,7648,'_elementor_template_type','wp-page'),(9336,7648,'_elementor_version','3.15.3'),(9337,7648,'_elementor_pro_version','3.15.0'),(9338,7648,'_wp_page_template','default'),(9339,7648,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9340,7648,'_elementor_page_assets','a:0:{}'),(9342,7649,'_elementor_edit_mode','builder'),(9343,7649,'_elementor_template_type','wp-page'),(9344,7649,'_elementor_version','3.15.3'),(9345,7649,'_elementor_pro_version','3.15.0'),(9346,7649,'_wp_page_template','default'),(9347,7649,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9348,7649,'_elementor_page_assets','a:0:{}'),(9350,7650,'_elementor_edit_mode','builder'),(9351,7650,'_elementor_template_type','wp-page'),(9352,7650,'_elementor_version','3.15.3'),(9353,7650,'_elementor_pro_version','3.15.0'),(9354,7650,'_wp_page_template','default'),(9355,7650,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9356,7650,'_elementor_page_assets','a:0:{}'),(9360,7651,'_elementor_template_type','wp-page'),(9361,7651,'_elementor_version','3.15.3'),(9362,7651,'_elementor_edit_mode','builder'),(9363,7651,'_wp_page_template','default'),(9364,7651,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_desc\":\"Have Any Question?\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9365,7651,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9366,7651,'_elementor_pro_version','3.15.0'),(9368,7652,'_elementor_template_type','wp-page'),(9369,7652,'_elementor_version','3.15.3'),(9370,7652,'_elementor_edit_mode','builder'),(9371,7652,'_wp_page_template','default'),(9372,7652,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_desc\":\"Have Any Question?\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9373,7652,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9374,7652,'_elementor_pro_version','3.15.0'),(9376,7653,'_elementor_template_type','wp-page'),(9377,7653,'_elementor_version','3.15.3'),(9378,7653,'_elementor_edit_mode','builder'),(9379,7653,'_wp_page_template','default'),(9380,7653,'_elementor_data','[{\"id\":\"1200249\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372cf99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b8e6922\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e59d5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"09c916a\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p><span style=\\\"font-weight: 400;\\\">We look forward to hearing from you and collaborating for a secured, high technology, AI-driven solution to address your business needs.<\\/span><\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"be6828a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/WhatsApp.svg.png\",\"id\":7462,\"size\":\"\",\"alt\":\"WhatsApp.svg\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_link\":{\"url\":\"https:\\/\\/wa.me\\/6596772316\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_desc\":\"Have Any Question?\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"9098fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"b289bb3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/contact-us-girl-1-e1695023051270.png\",\"id\":7278,\"size\":\"\",\"alt\":\"contact-us-image\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9381,7653,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9382,7653,'_elementor_pro_version','3.15.0'),(9384,6535,'_elementor_controls_usage','a:5:{s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:6:{s:19:\"bizmax_stitle_style\";i:1;s:20:\"bizmax_section_label\";i:1;s:20:\"bizmax_section_title\";i:1;s:19:\"bizmax_section_desc\";i:1;s:19:\"bizmax_stitle_color\";i:1;s:18:\"bizmax_stext_color\";i:1;}}}}s:19:\"bizmax-contact-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:2:{s:7:\"c_lists\";i:1;s:19:\"bizmax_stitle_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:15:\"animation_delay\";i:2;}}}}s:21:\"bizmax-contact-modern\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:7:\"form_id\";i:1;s:18:\"bizmax_contact_img\";i:1;s:21:\"bizmax_contact_bg_img\";i:1;s:20:\"bizmax_contact_title\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(9385,7654,'_wp_page_template','elementor_theme'),(9386,7654,'_elementor_edit_mode','builder'),(9387,7654,'_elementor_template_type','wp-post'),(9388,7654,'_elementor_version','3.15.3'),(9389,7654,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9390,7654,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9391,7654,'_elementor_pro_version','3.15.0'),(9393,7655,'_wp_page_template','elementor_theme'),(9394,7655,'_elementor_edit_mode','builder'),(9395,7655,'_elementor_template_type','wp-post'),(9396,7655,'_elementor_version','3.15.3'),(9397,7655,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9398,7655,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9399,7655,'_elementor_pro_version','3.15.0'),(9401,7656,'_wp_page_template','elementor_theme'),(9402,7656,'_elementor_edit_mode','builder'),(9403,7656,'_elementor_template_type','wp-post'),(9404,7656,'_elementor_version','3.15.3'),(9405,7656,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9406,7656,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9407,7656,'_elementor_pro_version','3.15.0'),(9411,7657,'_wp_page_template','elementor_theme'),(9412,7657,'_elementor_edit_mode','builder'),(9413,7657,'_elementor_template_type','wp-post'),(9414,7657,'_elementor_version','3.15.3'),(9415,7657,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9416,7657,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9417,7657,'_elementor_pro_version','3.15.0'),(9419,7658,'_wp_page_template','elementor_theme'),(9420,7658,'_elementor_edit_mode','builder'),(9421,7658,'_elementor_template_type','wp-post'),(9422,7658,'_elementor_version','3.15.3'),(9423,7658,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9424,7658,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9425,7658,'_elementor_pro_version','3.15.0'),(9427,7659,'_wp_page_template','elementor_theme'),(9428,7659,'_elementor_edit_mode','builder'),(9429,7659,'_elementor_template_type','wp-post'),(9430,7659,'_elementor_version','3.15.3'),(9431,7659,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9432,7659,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9433,7659,'_elementor_pro_version','3.15.0'),(9438,7660,'_wp_page_template','elementor_theme'),(9439,7660,'_elementor_edit_mode','builder'),(9440,7660,'_elementor_template_type','wp-post'),(9441,7660,'_elementor_version','3.15.3'),(9442,7660,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9443,7660,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9444,7660,'_elementor_pro_version','3.15.0'),(9446,7661,'_wp_page_template','elementor_theme'),(9447,7661,'_elementor_edit_mode','builder'),(9448,7661,'_elementor_template_type','wp-post'),(9449,7661,'_elementor_version','3.15.3'),(9450,7661,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9451,7661,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9452,7661,'_elementor_pro_version','3.15.0'),(9454,7662,'_wp_page_template','elementor_theme'),(9455,7662,'_elementor_edit_mode','builder'),(9456,7662,'_elementor_template_type','wp-post'),(9457,7662,'_elementor_version','3.15.3'),(9458,7662,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9459,7662,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9460,7662,'_elementor_pro_version','3.15.0'),(9464,7663,'_elementor_edit_mode','builder'),(9465,7663,'_elementor_template_type','wp-page'),(9466,7663,'_elementor_version','3.15.3'),(9467,7663,'_elementor_pro_version','3.15.0'),(9468,7663,'_wp_page_template','default'),(9469,7663,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(9470,7663,'_elementor_page_assets','a:0:{}'),(9471,7663,'_elementor_controls_usage','a:3:{s:13:\"loop-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:4:{s:14:\"section_layout\";a:3:{s:11:\"template_id\";i:1;s:14:\"posts_per_page\";i:1;s:14:\"slides_to_show\";i:1;}s:13:\"section_query\";a:4:{s:18:\"post_query_include\";i:1;s:20:\"post_query_post_type\";i:1;s:20:\"post_query_posts_ids\";i:1;s:19:\"post_query_query_id\";i:1;}s:25:\"section_carousel_settings\";a:1:{s:5:\"speed\";i:1;}s:27:\"section_navigation_settings\";a:2:{s:24:\"navigation_previous_icon\";i:1;s:20:\"navigation_next_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:21:\"_element_custom_width\";i:1;}}s:5:\"style\";a:1:{s:25:\"section_design_navigation\";a:2:{s:11:\"arrows_size\";i:1;s:17:\"arrow_hover_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}}}}}'),(9483,7665,'_wp_page_template','elementor_theme'),(9484,7665,'_elementor_edit_mode','builder'),(9485,7665,'_elementor_template_type','wp-post'),(9486,7665,'_elementor_version','3.15.3'),(9487,7665,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9488,7665,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9489,7665,'_elementor_pro_version','3.15.0'),(9491,7666,'_wp_page_template','elementor_theme'),(9492,7666,'_elementor_edit_mode','builder'),(9493,7666,'_elementor_template_type','wp-post'),(9494,7666,'_elementor_version','3.15.3'),(9495,7666,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9496,7666,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9497,7666,'_elementor_pro_version','3.15.0'),(9499,7667,'_wp_page_template','elementor_theme'),(9500,7667,'_elementor_edit_mode','builder'),(9501,7667,'_elementor_template_type','wp-post'),(9502,7667,'_elementor_version','3.15.3'),(9503,7667,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9504,7667,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9505,7667,'_elementor_pro_version','3.15.0'),(9509,7668,'_wp_page_template','elementor_theme'),(9510,7668,'_elementor_edit_mode','builder'),(9511,7668,'_elementor_template_type','wp-post'),(9512,7668,'_elementor_version','3.15.3'),(9513,7668,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9514,7668,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9515,7668,'_elementor_pro_version','3.15.0'),(9517,7669,'_wp_page_template','elementor_theme'),(9518,7669,'_elementor_edit_mode','builder'),(9519,7669,'_elementor_template_type','wp-post'),(9520,7669,'_elementor_version','3.15.3'),(9521,7669,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9522,7669,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9523,7669,'_elementor_pro_version','3.15.0'),(9525,7670,'_wp_page_template','elementor_theme'),(9526,7670,'_elementor_edit_mode','builder'),(9527,7670,'_elementor_template_type','wp-post'),(9528,7670,'_elementor_version','3.15.3'),(9529,7670,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9530,7670,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9531,7670,'_elementor_pro_version','3.15.0'),(9537,7671,'_thumbnail_id','7250'),(9538,7671,'_elementor_edit_mode','builder'),(9539,7671,'_elementor_template_type','wp-post'),(9540,7671,'_elementor_version','3.15.3'),(9541,7671,'_elementor_pro_version','3.15.0'),(9542,7671,'_wp_page_template','default'),(9543,7671,'_elementor_data','[{\"id\":\"28ee490\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"48f65e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c46b75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2022\\/06\\/News-and-Events-eDM-732x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9544,7671,'_elementor_page_assets','a:0:{}'),(9545,7671,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(9553,7672,'_thumbnail_id','7237'),(9554,7672,'_elementor_edit_mode','builder'),(9555,7672,'_elementor_template_type','wp-post'),(9556,7672,'_elementor_version','3.15.3'),(9557,7672,'_elementor_pro_version','3.15.0'),(9558,7672,'_wp_page_template','default'),(9559,7672,'_elementor_data','[{\"id\":\"d85474d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"80cbb73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cf56dba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2023\\/07\\/eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9560,7672,'_elementor_page_assets','a:0:{}'),(9561,7672,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(9567,7673,'_thumbnail_id','7244'),(9568,7673,'_elementor_edit_mode','builder'),(9569,7673,'_elementor_template_type','wp-post'),(9570,7673,'_elementor_version','3.15.3'),(9571,7673,'_elementor_pro_version','3.15.0'),(9572,7673,'_wp_page_template','default'),(9573,7673,'_elementor_data','[{\"id\":\"369253a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c559fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed18d14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2022\\/08\\/leapxpert_sleekflow-1024x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9574,7673,'_elementor_page_assets','a:0:{}'),(9575,7673,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(9579,7674,'_thumbnail_id','7244'),(9580,7674,'_elementor_edit_mode','builder'),(9581,7674,'_elementor_template_type','wp-post'),(9582,7674,'_elementor_version','3.15.3'),(9583,7674,'_elementor_pro_version','3.15.0'),(9584,7674,'_wp_page_template','default'),(9585,7674,'_elementor_data','[{\"id\":\"369253a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c559fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed18d14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2022\\/08\\/leapxpert_sleekflow-1024x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9586,7674,'_elementor_page_assets','a:0:{}'),(9588,7675,'_thumbnail_id','7244'),(9589,7675,'_elementor_edit_mode','builder'),(9590,7675,'_elementor_template_type','wp-post'),(9591,7675,'_elementor_version','3.15.3'),(9592,7675,'_elementor_pro_version','3.15.0'),(9593,7675,'_wp_page_template','default'),(9594,7675,'_elementor_data','[{\"id\":\"369253a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c559fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed18d14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2022\\/08\\/leapxpert_sleekflow-1024x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9595,7675,'_elementor_page_assets','a:0:{}'),(9597,7676,'_thumbnail_id','7244'),(9598,7676,'_elementor_edit_mode','builder'),(9599,7676,'_elementor_template_type','wp-post'),(9600,7676,'_elementor_version','3.15.3'),(9601,7676,'_elementor_pro_version','3.15.0'),(9602,7676,'_wp_page_template','default'),(9603,7676,'_elementor_data','[{\"id\":\"369253a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c559fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed18d14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/www.esi-asia.com\\/wp-content\\/uploads\\/2022\\/08\\/leapxpert_sleekflow-1024x1024.png\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9604,7676,'_elementor_page_assets','a:0:{}'),(9606,7243,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(9614,7682,'_elementor_edit_mode','builder'),(9615,7682,'_elementor_template_type','wp-page'),(9616,7682,'_elementor_version','3.15.3'),(9617,7682,'_elementor_pro_version','3.15.0'),(9618,7682,'_wp_page_template','default'),(9619,7682,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9620,7682,'_elementor_page_assets','a:0:{}'),(9621,7682,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}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:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(9623,7683,'_elementor_edit_mode','builder'),(9624,7683,'_elementor_template_type','wp-page'),(9625,7683,'_elementor_version','3.15.3'),(9626,7683,'_elementor_pro_version','3.15.0'),(9627,7683,'_wp_page_template','default'),(9628,7683,'_elementor_data','[{\"id\":\"5a68643\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b459b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"14e5208\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"10ce141\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ba8025\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2b521b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"62932b5\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"86bc520\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"856aaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"781a94f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b339be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb5cde6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span><span lang=\\\"EN-SG\\\">Managed services for infrastructure\\nare a lifeline for businesses seeking to streamline their IT operations and\\nmaximize efficiency. These services encompass the outsourcing of tasks related\\nto the design, setup, maintenance, and optimization of an organization\'s IT\\ninfrastructure. With managed infrastructure services, you can offload the\\ncomplexity of managing servers, networks, storage, and data centers to expert\\nproviders, freeing up internal resources and reducing operational overhead.\\nThis approach not only ensures high availability, security, and scalability but\\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO\\u2019s\\nmanaged infrastructure services are instrumental in achieving cost\\npredictability, as we operate on a subscription or pay-as-you-go model, making\\nit easier for your businesses to align your IT expenses with your budgetary\\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\\ninfrastructure services offer the stability and agility necessary for modern\\nbusinesses to thrive in a digital-first world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f862753\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d820f01\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/audiocodes-logo-svg.svg\",\"id\":7368,\"size\":\"\",\"alt\":\"audiocodes-logo-svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/dialogic-corporation-vector-logo.svg\",\"id\":7369,\"size\":\"\",\"alt\":\"dialogic-corporation-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/ribbon_logo_hor_1_color_101-r-01.png\",\"id\":7370,\"size\":\"\",\"alt\":\"ribbon_logo_hor_1_color_101-r-01\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"3479534\"},{\"_id\":\"80f1427\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/extreme-networks-vector-logo.svg\",\"id\":7372,\"size\":\"\",\"alt\":\"extreme-networks-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"_id\":\"5b61f60\",\"bizmax_title\":\"\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Hewlett_Packard_Enterprise_logo.png\",\"id\":7596,\"size\":\"\",\"alt\":\"Hewlett_Packard_Enterprise_logo\",\"source\":\"library\"}}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"09c9c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"218c21a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"741478b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"116b048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"473e7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4d59243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4aaa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d6f4ad\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8b051e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e7919d\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86b7204\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe81a6a\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9629,7683,'_elementor_page_assets','a:0:{}'),(9630,7683,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}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:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(9632,7684,'_elementor_edit_mode','builder'),(9633,7684,'_elementor_template_type','wp-page'),(9634,7684,'_elementor_version','3.15.3'),(9635,7684,'_elementor_pro_version','3.15.0'),(9636,7684,'_wp_page_template','default'),(9637,7684,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9638,7684,'_elementor_page_assets','a:0:{}'),(9639,7684,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(9641,7685,'_elementor_edit_mode','builder'),(9642,7685,'_elementor_template_type','wp-page'),(9643,7685,'_elementor_version','3.15.3'),(9644,7685,'_elementor_pro_version','3.15.0'),(9645,7685,'_wp_page_template','default'),(9646,7685,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9647,7685,'_elementor_page_assets','a:0:{}'),(9648,7685,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(9650,7686,'_wp_page_template','elementor_theme'),(9651,7686,'_elementor_edit_mode','builder'),(9652,7686,'_elementor_template_type','wp-post'),(9653,7686,'_elementor_version','3.15.3'),(9654,7686,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9655,7686,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9656,7686,'_elementor_pro_version','3.15.0'),(9658,7687,'_wp_page_template','elementor_theme'),(9659,7687,'_elementor_edit_mode','builder'),(9660,7687,'_elementor_template_type','wp-post'),(9661,7687,'_elementor_version','3.15.3'),(9662,7687,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/footer_bg-1.jpg\",\"id\":7514,\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9663,7687,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9664,7687,'_elementor_pro_version','3.15.0'),(9666,7688,'_wp_page_template','elementor_theme'),(9667,7688,'_elementor_edit_mode','builder'),(9668,7688,'_elementor_template_type','wp-post'),(9669,7688,'_elementor_version','3.15.3'),(9670,7688,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9671,7688,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9672,7688,'_elementor_pro_version','3.15.0'),(9676,7689,'_wp_page_template','elementor_theme'),(9677,7689,'_elementor_edit_mode','builder'),(9678,7689,'_elementor_template_type','wp-post'),(9679,7689,'_elementor_version','3.15.3'),(9680,7689,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9681,7689,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9682,7689,'_elementor_pro_version','3.15.0'),(9684,7690,'_wp_page_template','elementor_theme'),(9685,7690,'_elementor_edit_mode','builder'),(9686,7690,'_elementor_template_type','wp-post'),(9687,7690,'_elementor_version','3.15.3'),(9688,7690,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9689,7690,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9690,7690,'_elementor_pro_version','3.15.0'),(9692,7691,'_wp_page_template','elementor_theme'),(9693,7691,'_elementor_edit_mode','builder'),(9694,7691,'_elementor_template_type','wp-post'),(9695,7691,'_elementor_version','3.15.3'),(9696,7691,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9697,7691,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9698,7691,'_elementor_pro_version','3.15.0'),(9702,7692,'_wp_page_template','elementor_theme'),(9703,7692,'_elementor_edit_mode','builder'),(9704,7692,'_elementor_template_type','wp-post'),(9705,7692,'_elementor_version','3.15.3'),(9706,7692,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9707,7692,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9708,7692,'_elementor_pro_version','3.15.0'),(9710,7693,'_wp_page_template','elementor_theme'),(9711,7693,'_elementor_edit_mode','builder'),(9712,7693,'_elementor_template_type','wp-post'),(9713,7693,'_elementor_version','3.15.3'),(9714,7693,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9715,7693,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9716,7693,'_elementor_pro_version','3.15.0'),(9718,7694,'_wp_page_template','elementor_theme'),(9719,7694,'_elementor_edit_mode','builder'),(9720,7694,'_elementor_template_type','wp-post'),(9721,7694,'_elementor_version','3.15.3'),(9722,7694,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9723,7694,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9724,7694,'_elementor_pro_version','3.15.0'),(9728,7695,'_wp_page_template','elementor_theme'),(9729,7695,'_elementor_edit_mode','builder'),(9730,7695,'_elementor_template_type','wp-post'),(9731,7695,'_elementor_version','3.15.3'),(9732,7695,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9733,7695,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9734,7695,'_elementor_pro_version','3.15.0'),(9736,7696,'_wp_page_template','elementor_theme'),(9737,7696,'_elementor_edit_mode','builder'),(9738,7696,'_elementor_template_type','wp-post'),(9739,7696,'_elementor_version','3.15.3'),(9740,7696,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9741,7696,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9742,7696,'_elementor_pro_version','3.15.0'),(9744,7697,'_wp_page_template','elementor_theme'),(9745,7697,'_elementor_edit_mode','builder'),(9746,7697,'_elementor_template_type','wp-post'),(9747,7697,'_elementor_version','3.15.3'),(9748,7697,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\",\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9749,7697,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9750,7697,'_elementor_pro_version','3.15.0'),(9754,7698,'_wp_page_template','elementor_theme'),(9755,7698,'_elementor_edit_mode','builder'),(9756,7698,'_elementor_template_type','wp-post'),(9757,7698,'_elementor_version','3.15.3'),(9758,7698,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\",\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9759,7698,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9760,7698,'_elementor_pro_version','3.15.0'),(9762,7699,'_wp_page_template','elementor_theme'),(9763,7699,'_elementor_edit_mode','builder'),(9764,7699,'_elementor_template_type','wp-post'),(9765,7699,'_elementor_version','3.15.3'),(9766,7699,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20f955f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#353535\",\"css_classes\":\"footer-section\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"0181328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"hide_mobile\":\"hidden-mobile\",\"animation\":\"zoomIn\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\",\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9767,7699,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9768,7699,'_elementor_pro_version','3.15.0'),(9770,7700,'_wp_page_template','elementor_theme'),(9771,7700,'_elementor_edit_mode','builder'),(9772,7700,'_elementor_template_type','wp-post'),(9773,7700,'_elementor_version','3.15.3'),(9774,7700,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9775,7700,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9776,7700,'_elementor_pro_version','3.15.0'),(9790,7702,'_wp_attached_file','2023/06/MAP-scaled.jpg'),(9791,7702,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1449;s:4:\"file\";s:22:\"2023/06/MAP-scaled.jpg\";s:8:\"filesize\";i:563504;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"MAP-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36443;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"MAP-1024x580.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:580;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138795;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"MAP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33109;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"MAP-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93119;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:16:\"MAP-1536x869.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:869;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254871;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:17:\"MAP-2048x1159.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1159;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:398183;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:15:\"MAP-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86936;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:15:\"MAP-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67420;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:15:\"MAP-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88398;}}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:7:\"MAP.jpg\";}'),(9792,7702,'_wp_attachment_image_alt','map-esigo'),(9793,7703,'_wp_page_template','default'),(9794,7703,'_elementor_edit_mode','builder'),(9795,7703,'_elementor_template_type','wp-page'),(9796,7703,'_elementor_version','3.15.3'),(9797,7703,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9798,7703,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9799,7703,'_elementor_pro_version','3.15.0'),(9801,7704,'_wp_page_template','default'),(9802,7704,'_elementor_edit_mode','builder'),(9803,7704,'_elementor_template_type','wp-page'),(9804,7704,'_elementor_version','3.15.3'),(9805,7704,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9806,7704,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9807,7704,'_elementor_pro_version','3.15.0'),(9809,7705,'_wp_page_template','default'),(9810,7705,'_elementor_edit_mode','builder'),(9811,7705,'_elementor_template_type','wp-page'),(9812,7705,'_elementor_version','3.15.3'),(9813,7705,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/MAP-scaled.jpg\",\"id\":7702,\"size\":\"\",\"alt\":\"map-esigo\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9814,7705,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9815,7705,'_elementor_pro_version','3.15.0'),(9828,7707,'_wp_page_template','default'),(9829,7707,'_elementor_edit_mode','builder'),(9830,7707,'_elementor_template_type','wp-page'),(9831,7707,'_elementor_version','3.15.3'),(9832,7707,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/MAP-scaled.jpg\",\"id\":7702,\"size\":\"\",\"alt\":\"map-esigo\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9833,7707,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9834,7707,'_elementor_pro_version','3.15.0'),(9835,7708,'_wp_page_template','default'),(9836,7708,'_elementor_edit_mode','builder'),(9837,7708,'_elementor_template_type','wp-page'),(9838,7708,'_elementor_version','3.15.3'),(9839,7708,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/MAP-scaled.jpg\",\"id\":7702,\"size\":\"\",\"alt\":\"map-esigo\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9840,7708,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9841,7708,'_elementor_pro_version','3.15.0'),(9842,7709,'_wp_page_template','default'),(9843,7709,'_elementor_edit_mode','builder'),(9844,7709,'_elementor_template_type','wp-page'),(9845,7709,'_elementor_version','3.15.3'),(9846,7709,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9847,7709,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9848,7709,'_elementor_pro_version','3.15.0'),(9851,7710,'_wp_attached_file','2023/06/Map_1.png'),(9852,7710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1426;s:6:\"height\";i:452;s:4:\"file\";s:17:\"2023/06/Map_1.png\";s:8:\"filesize\";i:70030;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"Map_1-300x95.png\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4494;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"Map_1-1024x325.png\";s:5:\"width\";i:1024;s:6:\"height\";i:325;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29825;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"Map_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:7230;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"Map_1-768x243.png\";s:5:\"width\";i:768;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20027;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:17:\"Map_1-354x452.png\";s:5:\"width\";i:354;s:6:\"height\";i:452;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16781;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:17:\"Map_1-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23130;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:17:\"Map_1-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37852;}}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:{}}}'),(9853,7710,'_wp_attachment_image_alt','maap-footer'),(9854,7711,'_wp_page_template','elementor_theme'),(9855,7711,'_elementor_edit_mode','builder'),(9856,7711,'_elementor_template_type','wp-post'),(9857,7711,'_elementor_version','3.15.3'),(9858,7711,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9859,7711,'_elementor_page_assets','a:0:{}'),(9860,7711,'_elementor_pro_version','3.15.0'),(9862,7712,'_wp_page_template','elementor_theme'),(9863,7712,'_elementor_edit_mode','builder'),(9864,7712,'_elementor_template_type','wp-post'),(9865,7712,'_elementor_version','3.15.3'),(9866,7712,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"footer_bg\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9867,7712,'_elementor_page_assets','a:0:{}'),(9868,7712,'_elementor_pro_version','3.15.0'),(9870,7713,'_wp_page_template','elementor_theme'),(9871,7713,'_elementor_edit_mode','builder'),(9872,7713,'_elementor_template_type','wp-post'),(9873,7713,'_elementor_version','3.15.3'),(9874,7713,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9875,7713,'_elementor_page_assets','a:0:{}'),(9876,7713,'_elementor_pro_version','3.15.0'),(9880,7714,'_wp_page_template','elementor_theme'),(9881,7714,'_elementor_edit_mode','builder'),(9882,7714,'_elementor_template_type','wp-post'),(9883,7714,'_elementor_version','3.15.3'),(9884,7714,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9885,7714,'_elementor_page_assets','a:0:{}'),(9886,7714,'_elementor_pro_version','3.15.0'),(9888,7715,'_wp_page_template','elementor_theme'),(9889,7715,'_elementor_edit_mode','builder'),(9890,7715,'_elementor_template_type','wp-post'),(9891,7715,'_elementor_version','3.15.3'),(9892,7715,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#8C8C8C\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9893,7715,'_elementor_page_assets','a:0:{}'),(9894,7715,'_elementor_pro_version','3.15.0'),(9896,7716,'_wp_page_template','elementor_theme'),(9897,7716,'_elementor_edit_mode','builder'),(9898,7716,'_elementor_template_type','wp-post'),(9899,7716,'_elementor_version','3.15.3'),(9900,7716,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9901,7716,'_elementor_page_assets','a:0:{}'),(9902,7716,'_elementor_pro_version','3.15.0'),(9906,7718,'_wp_page_template','default'),(9907,7718,'_elementor_edit_mode','builder'),(9908,7718,'_elementor_template_type','wp-page'),(9909,7718,'_elementor_version','3.15.3'),(9910,7718,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(9911,7718,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(9912,7718,'_elementor_pro_version','3.15.0'),(9914,7719,'_wp_page_template','default'),(9915,7719,'_elementor_edit_mode','builder'),(9916,7719,'_elementor_template_type','wp-page'),(9917,7719,'_elementor_version','3.15.3'),(9918,7719,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"7d56b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"e53a4d3\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(9919,7719,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(9920,7719,'_elementor_pro_version','3.15.0'),(9922,7720,'_wp_page_template','default'),(9923,7720,'_elementor_edit_mode','builder'),(9924,7720,'_elementor_template_type','wp-page'),(9925,7720,'_elementor_version','3.15.3');
INSERT INTO `wpsl_postmeta` VALUES (9926,7720,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(9927,7720,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(9928,7720,'_elementor_pro_version','3.15.0'),(9932,7306,'_wp_old_date','2023-09-20'),(9933,7314,'_wp_old_date','2023-09-20'),(9934,7321,'_wp_old_date','2023-09-20'),(9937,7722,'_wp_page_template','default'),(9938,7722,'_elementor_edit_mode','builder'),(9939,7722,'_elementor_template_type','wp-page'),(9940,7722,'_elementor_version','3.15.3'),(9941,7722,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9942,7722,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9943,7722,'_elementor_pro_version','3.15.0'),(9945,7723,'_wp_page_template','default'),(9946,7723,'_elementor_edit_mode','builder'),(9947,7723,'_elementor_template_type','wp-page'),(9948,7723,'_elementor_version','3.15.3'),(9949,7723,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9950,7723,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9951,7723,'_elementor_pro_version','3.15.0'),(9953,7724,'_wp_page_template','default'),(9954,7724,'_elementor_edit_mode','builder'),(9955,7724,'_elementor_template_type','wp-page'),(9956,7724,'_elementor_version','3.15.3'),(9957,7724,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p><p><strong>- Jakarta<br \\/><\\/strong>ITC Roxy Mas Blok C1, <br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9958,7724,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(9959,7724,'_elementor_pro_version','3.15.0'),(9963,7725,'_wp_attached_file','2023/10/unified-communication.jpg'),(9964,7725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:634;s:6:\"height\";i:597;s:4:\"file\";s:33:\"2023/10/unified-communication.jpg\";s:8:\"filesize\";i:40645;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"unified-communication-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11436;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"unified-communication-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5056;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:33:\"unified-communication-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15507;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:33:\"unified-communication-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14410;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:33:\"unified-communication-634x400.jpg\";s:5:\"width\";i:634;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20567;}}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:{}}}'),(9974,7727,'_elementor_edit_mode','builder'),(9975,7727,'_elementor_template_type','wp-page'),(9976,7727,'_elementor_version','3.15.3'),(9977,7727,'_elementor_pro_version','3.15.0'),(9978,7727,'_wp_page_template','default'),(9979,7727,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9980,7727,'_elementor_page_assets','a:0:{}'),(9981,7728,'_elementor_edit_mode','builder'),(9982,7728,'_elementor_template_type','wp-page'),(9983,7728,'_elementor_version','3.15.3'),(9984,7728,'_elementor_pro_version','3.15.0'),(9985,7728,'_wp_page_template','default'),(9986,7728,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d56060\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Systems-Logo.wine_.svg\",\"id\":7371,\"size\":\"\",\"alt\":\"Cisco_Systems-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9987,7728,'_elementor_page_assets','a:0:{}'),(9988,7729,'_elementor_edit_mode','builder'),(9989,7729,'_elementor_template_type','wp-page'),(9990,7729,'_elementor_version','3.15.3'),(9991,7729,'_elementor_pro_version','3.15.0'),(9992,7729,'_wp_page_template','default'),(9993,7729,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9994,7729,'_elementor_page_assets','a:0:{}'),(9996,7730,'_wp_attached_file','2023/10/customer-experience.jpg'),(9997,7730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:729;s:6:\"height\";i:694;s:4:\"file\";s:31:\"2023/10/customer-experience.jpg\";s:8:\"filesize\";i:60600;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"customer-experience-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14471;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"customer-experience-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6501;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:31:\"customer-experience-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21923;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:31:\"customer-experience-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18017;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:31:\"customer-experience-729x400.jpg\";s:5:\"width\";i:729;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28155;}}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:{}}}'),(9998,7731,'_elementor_edit_mode','builder'),(9999,7731,'_elementor_template_type','wp-page'),(10000,7731,'_elementor_version','3.15.3'),(10001,7731,'_elementor_pro_version','3.15.0'),(10002,7731,'_wp_page_template','default'),(10003,7731,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10004,7731,'_elementor_page_assets','a:0:{}'),(10006,7732,'_elementor_edit_mode','builder'),(10007,7732,'_elementor_template_type','wp-page'),(10008,7732,'_elementor_version','3.15.3'),(10009,7732,'_elementor_pro_version','3.15.0'),(10010,7732,'_wp_page_template','default'),(10011,7732,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f823e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a10127f\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\",\"id\":7358,\"size\":\"\",\"alt\":\"Cisco_Webex_logo_-_Brandlogos.net.svg\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/NICE_Ltd.-Logo.wine_.svg\",\"id\":7362,\"size\":\"\",\"alt\":\"NICE_Ltd.-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/verint-vector-logo.svg\",\"id\":7363,\"size\":\"\",\"alt\":\"verint-vector-logo\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"5982153\"},{\"_id\":\"911fc51\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Zoom_Video_Communications-Logo.wine_.svg\",\"id\":7364,\"size\":\"\",\"alt\":\"Zoom_Video_Communications-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10012,7732,'_elementor_page_assets','a:0:{}'),(10014,7733,'_elementor_edit_mode','builder'),(10015,7733,'_elementor_template_type','wp-page'),(10016,7733,'_elementor_version','3.15.3'),(10017,7733,'_elementor_pro_version','3.15.0'),(10018,7733,'_wp_page_template','default'),(10019,7733,'_elementor_data','[{\"id\":\"0184ea2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80df2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e67da0c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e862f71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa54594\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bba75ff\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"df40279\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"fd19fd3\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fcd185b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ae648\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12d1655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee8bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO\\u2019s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4c16c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/customer-experience.jpg\",\"id\":7730,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"83447a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e70c2d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"8ba9ddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb271e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a757e36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4327f6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3850a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0605f67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"65ec338\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d463f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9489164\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a791f5c\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10020,7733,'_elementor_page_assets','a:0:{}'),(10022,7292,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;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:3;s:10:\"image_size\";i:3;}}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:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(10025,7735,'_wp_attached_file','2023/10/map_final.png'),(10026,7735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:912;s:6:\"height\";i:580;s:4:\"file\";s:21:\"2023/10/map_final.png\";s:8:\"filesize\";i:214464;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"map_final-300x191.png\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29614;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"map_final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16665;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"map_final-768x488.png\";s:5:\"width\";i:768;s:6:\"height\";i:488;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141001;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:21:\"map_final-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94397;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:21:\"map_final-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66867;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:21:\"map_final-738x400.png\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119866;}}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:{}}}'),(10027,7735,'_wp_attachment_image_alt','map_final'),(10038,7737,'_wp_page_template','default'),(10039,7737,'_elementor_edit_mode','builder'),(10040,7737,'_elementor_template_type','wp-page'),(10041,7737,'_elementor_version','3.15.3'),(10042,7737,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p><p><strong>- Jakarta<br \\/><\\/strong>ITC Roxy Mas Blok C1, <br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10043,7737,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(10044,7737,'_elementor_pro_version','3.15.0'),(10046,7738,'_wp_page_template','default'),(10047,7738,'_elementor_edit_mode','builder'),(10048,7738,'_elementor_template_type','wp-page'),(10049,7738,'_elementor_version','3.15.3'),(10050,7738,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/map.png\",\"id\":7010,\"size\":\"\",\"alt\":\"map\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p><p><strong>- Jakarta<br \\/><\\/strong>ITC Roxy Mas Blok C1, <br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10051,7738,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(10052,7738,'_elementor_pro_version','3.15.0'),(10054,7739,'_wp_page_template','default'),(10055,7739,'_elementor_edit_mode','builder'),(10056,7739,'_elementor_template_type','wp-page'),(10057,7739,'_elementor_version','3.15.3'),(10058,7739,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p><p><strong>- Jakarta<br \\/><\\/strong>ITC Roxy Mas Blok C1, <br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10059,7739,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(10060,7739,'_elementor_pro_version','3.15.0'),(10064,7740,'_wp_page_template','default'),(10065,7740,'_elementor_edit_mode','builder'),(10066,7740,'_elementor_template_type','wp-page'),(10067,7740,'_elementor_version','3.15.3'),(10068,7740,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p><p><strong>- Jakarta<br \\/><\\/strong>ITC Roxy Mas Blok C1, <br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10069,7740,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(10070,7740,'_elementor_pro_version','3.15.0'),(10072,7741,'_wp_page_template','default'),(10073,7741,'_elementor_edit_mode','builder'),(10074,7741,'_elementor_template_type','wp-page'),(10075,7741,'_elementor_version','3.15.3'),(10076,7741,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p><p><strong>- Jakarta<br \\/><\\/strong>ITC Roxy Mas Blok C1, <br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10077,7741,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(10078,7741,'_elementor_pro_version','3.15.0'),(10080,7742,'_wp_page_template','default'),(10081,7742,'_elementor_edit_mode','builder'),(10082,7742,'_elementor_template_type','wp-page'),(10083,7742,'_elementor_version','3.15.3'),(10084,7742,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p><p><strong>- Jakarta<br \\/><\\/strong>ITC Roxy Mas Blok C1, <br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10085,7742,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(10086,7742,'_elementor_pro_version','3.15.0'),(10101,6099,'_hash','9b01c55d15e2592038b0b3b26dd2ba646ee91d97'),(10150,7753,'_elementor_edit_mode','builder'),(10151,7753,'_elementor_template_type','wp-page'),(10152,7753,'_elementor_version','3.15.3'),(10153,7753,'_elementor_pro_version','3.15.0'),(10154,7753,'_wp_page_template','default'),(10155,7753,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10156,7753,'_elementor_page_assets','a:0:{}'),(10158,7754,'_elementor_edit_mode','builder'),(10159,7754,'_elementor_template_type','wp-page'),(10160,7754,'_elementor_version','3.15.3'),(10161,7754,'_elementor_pro_version','3.15.0'),(10162,7754,'_wp_page_template','default'),(10163,7754,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10164,7754,'_elementor_page_assets','a:0:{}'),(10166,7755,'_elementor_edit_mode','builder'),(10167,7755,'_elementor_template_type','wp-page'),(10168,7755,'_elementor_version','3.15.3'),(10169,7755,'_elementor_pro_version','3.15.0'),(10170,7755,'_wp_page_template','default'),(10171,7755,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10172,7755,'_elementor_page_assets','a:0:{}'),(10189,7758,'_elementor_edit_mode','builder'),(10190,7758,'_elementor_template_type','wp-page'),(10191,7758,'_elementor_version','3.15.3'),(10192,7758,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false}]'),(10193,7758,'_wp_page_template','default'),(10194,7758,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";}}'),(10195,7758,'_elementor_pro_version','3.15.0'),(10197,7759,'_elementor_edit_mode','builder'),(10198,7759,'_elementor_template_type','wp-page'),(10199,7759,'_elementor_version','3.15.3'),(10200,7759,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"091c4a8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#17191D\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/moving_text_shape.png\",\"id\":4748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fe8f230\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b6c51d4\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"04b0956\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"3ea380f\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_list_title1\":\"* Creative Business & Finance\",\"bizmax_list_title2\":\"* Business Inspired Template\",\"bizmax_list_title3\":\"* Innovation Creative Design\",\"bizmax_list_title4\":\"* Creative Business & Finance\",\"_id\":\"aa72933\"}]},\"elements\":[],\"widgetType\":\"bizmax-animate-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"3f6f8fb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"57ce8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f975398\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"We Provide The Solution <br> For Our Clients\",\"bizmax_section_desc\":\"<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.<\\/p>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcf97f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"9cfef91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":900,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"9a9d0fc\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"How the pandemic has changed ASEAN managed services buying habits (Channel Asia)\",\"bizmax_service_desc\":\"<p>ASEAN enterprises\\u2019 managed services buying criteria has evolved since the onset of COVID-19.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/wp-content\\/uploads\\/2021\\/10\\/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/iotbusiness-platform.com\\/insights\\/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3.png\",\"id\":4989,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"8a3f6b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":1200},\"elements\":[{\"id\":\"295d7e7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Overcoming the most common cloud migration challenges\",\"bizmax_service_desc\":\"<p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/cdn-cashy-static-assets.lucidchart.com\\/marketing\\/blog\\/2018Q4\\/cloud-migration-challenges\\/cloud-migration-challenges-header.png\",\"id\":\"\",\"size\":\"\",\"source\":\"url\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/www.lucidchart.com\\/blog\\/challenges-with-moving-to-the-cloud\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/4.png\",\"id\":4990,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8be764b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"105aa75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c1b0bc\",\"elType\":\"widget\",\"settings\":{\"bizmax_cta_title\":\"Digital agency services built specifically for your business\",\"bizmax_btn_text\":\"Find More Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"bizmax-small-cta\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6f7877\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f31d65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"19589bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/08\\/section-shape.png\",\"id\":6076,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":-5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff664d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"bb9b404\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"131c732\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1.png\",\"id\":4736,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon.svg\",\"id\":4733,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"6108d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"f151259\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Get Ready for Success with <span>Bizmax<\\/span> Your Path to Growth.\",\"bizmax_section_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.<\\/p>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"40bcf67\",\"elType\":\"widget\",\"settings\":{\"bizmax_progress_label\":\"Web development\",\"bizmax_progress_percent\":\"90%\",\"bizmax_info_title\":\"Complete Projects\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"_id\":\"ce87bc0\",\"bizmax_icon_box_title\":\"Accounting and Bookkeeping\",\"bizmax_icon_box_desc\":\"Services related to financial record-keeping, bookkeeping.\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Information\",\"bizmax_icon_box_title\":\"Human Resources (HR) Consulting\",\"bizmax_icon_box_desc\":\"Assistance with HR-related tasks such as recruitment.\",\"_id\":\"29d97b6\"}],\"bizmax_video_link\":{\"url\":\"https:\\/\\/www.youtube.com\\/embed\\/VStvZjykQ00\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_video_link_text\":\"Watch the video\",\"bizmax_btn_text\":\"Get A Quote\"},\"elements\":[],\"widgetType\":\"bizmax-about-info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b99c53\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49fbd17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a97eb12\",\"elType\":\"widget\",\"settings\":{\"bizmax_sub_title\":\"Our Latest Project\",\"bizmax_title\":\"Take a look our <br> Completed Projects\",\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"_id\":\"8c96281\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8215497\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2-1.jpeg\",\"id\":4856,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"SEO Optimized\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dbc1648\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_3.jpeg\",\"id\":4752,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Campaing\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a829f51\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_4.jpeg\",\"id\":4753,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Marketing Webdesign\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4b27c2f\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_1.jpeg\",\"id\":4750,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Project Info\",\"bizmax_project_thum\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_project_title\":\"Digital Product\",\"bizmax_project_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/portfolio-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e94ea6b\",\"bizmax_project_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/portfolio_2.jpeg\",\"id\":4751,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"4\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-projects\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5204e24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"54e4c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"36ecdbd\",\"elType\":\"widget\",\"settings\":{\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_left_img.jpeg\",\"id\":4805,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_sub_title\":\"Why Choose Us\",\"bizmax_1st_title\":\"Developing a \",\"bizmax_2nd_title\":\"design that <br> is easy\",\"bizmax_3rd_title\":\"to use and <br> navigate\",\"bizmax_desc\":\"Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics\",\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"843ffac\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-1.png\",\"id\":5151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\" Digital agency services\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-2.png\",\"id\":5152,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creative digital agency\",\"_id\":\"03544fe\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-3.png\",\"id\":5153,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Super expert developers\",\"_id\":\"7fb754a\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_label\":\"adsf\",\"bizmax_list_desc\":\"asdf\",\"bizmax_list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_list_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/f-4.png\",\"id\":5154,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Creating a user friendly design\",\"_id\":\"48daf31\"}],\"bizmax_main_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/why_choose_us_right_img.jpeg\",\"id\":4806,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-why-choose\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23bd122\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c955ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1dab64b\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d6c6de\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"fb15cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"73ddd5e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"96a2609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3d32066\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Meet Our Team Member\",\"bizmax_section_title\":\"Meet the professional team <br> behind the success\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d89cb3b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6a4bf2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1b16b9\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"_id\":\"93685e2\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_1.jpeg\",\"id\":4791,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_2.jpeg\",\"id\":4792,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"636bb41\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Team Information\",\"bizmax_team_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/team_member_3.jpeg\",\"id\":4793,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_team_name\":\"Ralph Edwards\",\"bizmax_team_info\":\"Web designer\",\"bizmax_team_sicon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_url\":\"#\",\"bizmax_team_sicon_two\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_two_url\":\"#\",\"bizmax_team_sicon_three\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"bizmax_team_sicon_three_url\":\"#\",\"_id\":\"d90c712\",\"bizmax_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"columns\":\"3\",\"columns_tab\":\"2\",\"columns_mobile\":\"2\",\"autoplayTimeout\":\"5000\",\"smartSpeed\":\"600\",\"team_layout\":\"2\",\"bizmax_grid_column\":\"col-lg-4\",\"bizmax_slider_column\":\"2\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"600\"},\"elements\":[],\"widgetType\":\"bizmax-team-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"007ef48\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/cta_bg-2-scaled.jpeg\",\"id\":5200,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"overflow\":\"hidden\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f6d7489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b4d6a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a008780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"4a5248f\",\"elType\":\"widget\",\"settings\":{\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_label\":\"Contact With Us\",\"bizmax_section_title\":\"Let\\u2019s Work Together?\",\"bizmax_section_desc\":\"<p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_stitle_color\":\"#FFFFFF\",\"bizmax_stext_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"e2d0fae\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"9915415\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-1.png\",\"id\":5071,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Have Any Question?\",\"bizmax_list_desc\":\"+ 65 6817 1978\",\"bizmax_list_link\":{\"url\":\"tel:+6568171978 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/2-1.png\",\"id\":5072,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Send Email\",\"bizmax_list_desc\":\"marketing@esi-asia.com \",\"bizmax_list_link\":{\"url\":\"mailto:marketing@esi-asia.com \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"533d24b\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_icon_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/3-1.png\",\"id\":5073,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_list_title\":\"Have Any Question?\",\"bizmax_list_text\":\"+ 070 4531 9507 \",\"bizmax_list_label\":\"Address\",\"bizmax_list_desc\":\"ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538\",\"_id\":\"e3d2cff\"}],\"bizmax_stitle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"bizmax-contact-list\"}],\"isInner\":true},{\"id\":\"875cb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"_inline_size_laptop\":33.33,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"23\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ab1491\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"6099\",\"bizmax_contact_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_img_1.png\",\"id\":4728,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_bg_img\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/contact_bg_pattern.svg\",\"id\":4726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_contact_title\":\" Contact Us\"},\"elements\":[],\"widgetType\":\"bizmax-contact-modern\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e24f0b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4585d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"0bda953\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false}]'),(10201,7759,'_wp_page_template','default'),(10202,7759,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";}}'),(10203,7759,'_elementor_pro_version','3.15.0'),(10205,7760,'_elementor_edit_mode','builder'),(10206,7760,'_elementor_template_type','wp-page'),(10207,7760,'_elementor_version','3.15.3'),(10208,7760,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10209,7760,'_wp_page_template','default'),(10210,7760,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";}}'),(10211,7760,'_elementor_pro_version','3.15.0'),(10218,7763,'_edit_lock','1700205483:1'),(10219,7763,'_edit_last','1'),(10220,7763,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(10221,7763,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(10222,7763,'_elementor_edit_mode','builder'),(10223,7763,'_elementor_template_type','wp-page'),(10224,7763,'_elementor_version','3.15.3'),(10225,7763,'_elementor_pro_version','3.15.0'),(10226,7763,'_wp_page_template','default'),(10227,7763,'_elementor_data','[{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: #555555; font-family: Rubik, sans-serif; font-size: 24px; font-weight: bold; text-align: var(--bs-body-text-align);\\\">Service-Based Operator (Class) Licence<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Licence Name\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Services-Based Operator (Class) Licence<\\/span><\\/p><p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"><span style=\\\"color: #333333; font-family: \'Open Sans\', sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Service Code<\\/span><br \\/><\\/label><\\/p><p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br \\/>Operating Address \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.\\u00a0<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10228,7763,'_elementor_page_assets','a:0:{}'),(10231,7764,'_elementor_edit_mode','builder'),(10232,7764,'_elementor_template_type','wp-page'),(10233,7764,'_elementor_version','3.15.3'),(10234,7764,'_elementor_pro_version','3.15.0'),(10235,7764,'_wp_page_template','default'),(10236,7764,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><p>\\u00a0<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10237,7764,'_elementor_page_assets','a:0:{}'),(10238,7765,'_elementor_edit_mode','builder'),(10239,7765,'_elementor_template_type','wp-page'),(10240,7765,'_elementor_version','3.15.3'),(10241,7765,'_elementor_pro_version','3.15.0'),(10242,7765,'_wp_page_template','default'),(10243,7765,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><p>\\u00a0<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10244,7765,'_elementor_page_assets','a:0:{}'),(10245,7766,'_elementor_edit_mode','builder'),(10246,7766,'_elementor_template_type','wp-page'),(10247,7766,'_elementor_version','3.15.3'),(10248,7766,'_elementor_pro_version','3.15.0'),(10249,7766,'_wp_page_template','default'),(10250,7766,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><p>\\u00a0<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10251,7766,'_elementor_page_assets','a:0:{}'),(10289,7773,'_elementor_edit_mode','builder'),(10290,7773,'_elementor_template_type','wp-page'),(10291,7773,'_elementor_version','3.15.3'),(10292,7773,'_elementor_pro_version','3.15.0'),(10293,7773,'_wp_page_template','default'),(10294,7773,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10295,7773,'_elementor_page_assets','a:0:{}'),(10297,7774,'_elementor_edit_mode','builder'),(10298,7774,'_elementor_template_type','wp-page'),(10299,7774,'_elementor_version','3.15.3'),(10300,7774,'_elementor_pro_version','3.15.0'),(10301,7774,'_wp_page_template','default'),(10302,7774,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[\"authors\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10303,7774,'_elementor_page_assets','a:0:{}'),(10305,7775,'_elementor_edit_mode','builder'),(10306,7775,'_elementor_template_type','wp-page'),(10307,7775,'_elementor_version','3.15.3'),(10308,7775,'_elementor_pro_version','3.15.0'),(10309,7775,'_wp_page_template','default'),(10310,7775,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10311,7775,'_elementor_page_assets','a:0:{}'),(10349,7780,'_elementor_edit_mode','builder'),(10350,7780,'_elementor_template_type','wp-page'),(10351,7780,'_elementor_version','3.15.3'),(10352,7780,'_elementor_pro_version','3.15.0'),(10353,7780,'_wp_page_template','default'),(10354,7780,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10355,7780,'_elementor_page_assets','a:0:{}'),(10357,7781,'_elementor_edit_mode','builder'),(10358,7781,'_elementor_template_type','wp-page'),(10359,7781,'_elementor_version','3.15.3'),(10360,7781,'_elementor_pro_version','3.15.0'),(10361,7781,'_wp_page_template','default'),(10362,7781,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10363,7781,'_elementor_page_assets','a:0:{}'),(10365,7782,'_elementor_edit_mode','builder'),(10366,7782,'_elementor_template_type','wp-page'),(10367,7782,'_elementor_version','3.15.3'),(10368,7782,'_elementor_pro_version','3.15.0'),(10369,7782,'_wp_page_template','default'),(10370,7782,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10371,7782,'_elementor_page_assets','a:0:{}'),(10374,7783,'_elementor_edit_mode','builder'),(10375,7783,'_elementor_template_type','wp-page'),(10376,7783,'_elementor_version','3.15.3'),(10377,7783,'_elementor_pro_version','3.15.0'),(10378,7783,'_wp_page_template','default'),(10379,7783,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10380,7783,'_elementor_page_assets','a:0:{}'),(10381,7784,'_elementor_edit_mode','builder'),(10382,7784,'_elementor_template_type','wp-page'),(10383,7784,'_elementor_version','3.15.3'),(10384,7784,'_elementor_pro_version','3.15.0'),(10385,7784,'_wp_page_template','default'),(10386,7784,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10387,7784,'_elementor_page_assets','a:0:{}'),(10388,7785,'_elementor_edit_mode','builder'),(10389,7785,'_elementor_template_type','wp-page'),(10390,7785,'_elementor_version','3.15.3'),(10391,7785,'_elementor_pro_version','3.15.0'),(10392,7785,'_wp_page_template','default'),(10393,7785,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10394,7785,'_elementor_page_assets','a:0:{}'),(10403,7786,'_elementor_edit_mode','builder'),(10404,7786,'_elementor_template_type','wp-page'),(10405,7786,'_elementor_version','3.15.3'),(10406,7786,'_elementor_pro_version','3.15.0'),(10407,7786,'_wp_page_template','default'),(10408,7786,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><p>\\u00a0<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10409,7786,'_elementor_page_assets','a:0:{}'),(10411,7787,'_wp_page_template','elementor_theme'),(10412,7787,'_elementor_edit_mode','builder'),(10413,7787,'_elementor_template_type','wp-post'),(10414,7787,'_elementor_version','3.15.3'),(10415,7787,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10416,7787,'_elementor_page_assets','a:0:{}'),(10417,7787,'_elementor_pro_version','3.15.0'),(10419,7788,'_wp_page_template','elementor_theme'),(10420,7788,'_elementor_edit_mode','builder'),(10421,7788,'_elementor_template_type','wp-post'),(10422,7788,'_elementor_version','3.15.3'),(10423,7788,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10424,7788,'_elementor_page_assets','a:0:{}'),(10425,7788,'_elementor_pro_version','3.15.0'),(10427,7789,'_wp_page_template','elementor_theme'),(10428,7789,'_elementor_edit_mode','builder'),(10429,7789,'_elementor_template_type','wp-post'),(10430,7789,'_elementor_version','3.15.3'),(10431,7789,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business License\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-license\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10432,7789,'_elementor_page_assets','a:0:{}'),(10433,7789,'_elementor_pro_version','3.15.0'),(10438,7790,'_edit_lock','1700199859:1'),(10439,7790,'_thumbnail_id','7810'),(10440,7790,'_edit_last','1'),(10441,7790,'bizmax_wp_blog_options','a:3:{s:21:\"enable_featured_image\";s:1:\"1\";s:21:\"featured_image_upload\";a:8:{s:3:\"url\";s:107:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Hybrid-Workforce_Experiences_mock-8-scaled.jpg\";s:2:\"id\";s:4:\"7810\";s:5:\"width\";s:4:\"2560\";s:6:\"height\";s:4:\"1707\";s:9:\"thumbnail\";s:108:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Hybrid-Workforce_Experiences_mock-8-150x150.jpg\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:35:\"Hybrid Workforce_Experiences_mock-8\";s:11:\"description\";s:0:\"\";}s:11:\"post_layout\";s:13:\"right-sidebar\";}'),(10442,7790,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(10443,7790,'_elementor_edit_mode','builder'),(10444,7790,'_elementor_template_type','wp-post'),(10445,7790,'_elementor_version','3.15.3'),(10446,7790,'_elementor_pro_version','3.15.0'),(10449,7792,'_thumbnail_id','7725'),(10450,7792,'_elementor_edit_mode','builder'),(10451,7792,'_elementor_template_type','wp-post'),(10452,7792,'_elementor_version','3.15.3'),(10453,7792,'_elementor_pro_version','3.15.0'),(10454,7793,'_thumbnail_id','7725'),(10455,7793,'_elementor_edit_mode','builder'),(10456,7793,'_elementor_template_type','wp-post'),(10457,7793,'_elementor_version','3.15.3'),(10458,7793,'_elementor_pro_version','3.15.0'),(10459,7790,'_wp_page_template','default'),(10460,7790,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b20a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"RSVP\",\"link\":{\"url\":\"https:\\/\\/www.addevent.com\\/event\\/Kz19200440\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d04240\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac96292\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07067c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10461,7794,'_thumbnail_id','7725'),(10462,7794,'_elementor_edit_mode','builder'),(10463,7794,'_elementor_template_type','wp-post'),(10464,7794,'_elementor_version','3.15.3'),(10465,7794,'_elementor_pro_version','3.15.0'),(10466,7794,'_wp_page_template','default'),(10467,7794,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10468,7790,'_elementor_page_assets','a:0:{}'),(10470,7795,'_elementor_edit_mode','builder'),(10471,7795,'_elementor_template_type','wp-page'),(10472,7795,'_elementor_version','3.15.3'),(10473,7795,'_elementor_pro_version','3.15.0'),(10474,7795,'_wp_page_template','default'),(10475,7795,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10476,7795,'_elementor_page_assets','a:0:{}'),(10478,7796,'_elementor_edit_mode','builder'),(10479,7796,'_elementor_template_type','wp-page'),(10480,7796,'_elementor_version','3.15.3'),(10481,7796,'_elementor_pro_version','3.15.0'),(10482,7796,'_wp_page_template','default'),(10483,7796,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10484,7796,'_elementor_page_assets','a:0:{}'),(10486,7797,'_elementor_edit_mode','builder'),(10487,7797,'_elementor_template_type','wp-page'),(10488,7797,'_elementor_version','3.15.3'),(10489,7797,'_elementor_pro_version','3.15.0'),(10490,7797,'_wp_page_template','default'),(10491,7797,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10492,7797,'_elementor_page_assets','a:0:{}'),(10495,7798,'_elementor_edit_mode','builder'),(10496,7798,'_elementor_template_type','wp-page'),(10497,7798,'_elementor_version','3.15.3'),(10498,7798,'_elementor_pro_version','3.15.0'),(10499,7798,'_wp_page_template','default'),(10500,7798,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><p>\\u00a0<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10501,7798,'_elementor_page_assets','a:0:{}'),(10503,7798,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(10513,7800,'_elementor_edit_mode','builder'),(10514,7800,'_elementor_template_type','wp-page'),(10515,7800,'_elementor_version','3.15.3'),(10516,7800,'_elementor_pro_version','3.15.0'),(10517,7800,'_wp_page_template','default'),(10518,7800,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><p>\\u00a0<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10519,7800,'_elementor_page_assets','a:0:{}'),(10520,7801,'_elementor_edit_mode','builder'),(10521,7801,'_elementor_template_type','wp-page'),(10522,7801,'_elementor_version','3.15.3'),(10523,7801,'_elementor_pro_version','3.15.0'),(10524,7801,'_wp_page_template','default'),(10525,7801,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><p>\\u00a0<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10526,7801,'_elementor_page_assets','a:0:{}'),(10527,7802,'_elementor_edit_mode','builder'),(10528,7802,'_elementor_template_type','wp-page'),(10529,7802,'_elementor_version','3.15.3'),(10530,7802,'_elementor_pro_version','3.15.0'),(10531,7802,'_wp_page_template','default'),(10532,7802,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<br \\/><br \\/>Service Code &amp; Description<br \\/><\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<br \\/><br \\/>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10533,7802,'_elementor_page_assets','a:0:{}'),(10536,7803,'_wp_page_template','elementor_theme'),(10537,7803,'_elementor_edit_mode','builder'),(10538,7803,'_elementor_template_type','wp-post'),(10539,7803,'_elementor_version','3.15.3'),(10540,7803,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business License\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-license\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10541,7803,'_elementor_page_assets','a:0:{}'),(10542,7803,'_elementor_pro_version','3.15.0'),(10544,7804,'_wp_page_template','elementor_theme'),(10545,7804,'_elementor_edit_mode','builder'),(10546,7804,'_elementor_template_type','wp-post'),(10547,7804,'_elementor_version','3.15.3'),(10548,7804,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business License\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-license\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10549,7804,'_elementor_page_assets','a:0:{}'),(10550,7804,'_elementor_pro_version','3.15.0'),(10552,7805,'_wp_page_template','elementor_theme'),(10553,7805,'_elementor_edit_mode','builder'),(10554,7805,'_elementor_template_type','wp-post'),(10555,7805,'_elementor_version','3.15.3'),(10556,7805,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business Licence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-license\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10557,7805,'_elementor_page_assets','a:0:{}'),(10558,7805,'_elementor_pro_version','3.15.0'),(10562,7806,'_wp_page_template','elementor_theme'),(10563,7806,'_elementor_edit_mode','builder'),(10564,7806,'_elementor_template_type','wp-post'),(10565,7806,'_elementor_version','3.15.3'),(10566,7806,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business Licence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-license\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10567,7806,'_elementor_page_assets','a:0:{}'),(10568,7806,'_elementor_pro_version','3.15.0'),(10570,7807,'_wp_page_template','elementor_theme'),(10571,7807,'_elementor_edit_mode','builder'),(10572,7807,'_elementor_template_type','wp-post'),(10573,7807,'_elementor_version','3.15.3'),(10574,7807,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business Licence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-license\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10575,7807,'_elementor_page_assets','a:0:{}'),(10576,7807,'_elementor_pro_version','3.15.0'),(10578,7808,'_wp_page_template','elementor_theme'),(10579,7808,'_elementor_edit_mode','builder'),(10580,7808,'_elementor_template_type','wp-post'),(10581,7808,'_elementor_version','3.15.3'),(10582,7808,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business Licence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-licence\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10583,7808,'_elementor_page_assets','a:0:{}'),(10584,7808,'_elementor_pro_version','3.15.0'),(10588,6626,'_edit_last','1'),(10600,7810,'_wp_attached_file','2023/11/Hybrid-Workforce_Experiences_mock-8-scaled.jpg'),(10601,7810,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:54:\"2023/11/Hybrid-Workforce_Experiences_mock-8-scaled.jpg\";s:8:\"filesize\";i:519361;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Hybrid-Workforce_Experiences_mock-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48032;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Hybrid-Workforce_Experiences_mock-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152487;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Hybrid-Workforce_Experiences_mock-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37659;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Hybrid-Workforce_Experiences_mock-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109250;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"Hybrid-Workforce_Experiences_mock-8-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253501;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:49:\"Hybrid-Workforce_Experiences_mock-8-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:376118;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:47:\"Hybrid-Workforce_Experiences_mock-8-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67739;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:47:\"Hybrid-Workforce_Experiences_mock-8-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62728;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:47:\"Hybrid-Workforce_Experiences_mock-8-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91318;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1629219478\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:39:\"Hybrid-Workforce_Experiences_mock-8.jpg\";}'),(10604,7790,'_wp_old_slug','title-test-1'),(10608,7811,'_thumbnail_id','7810'),(10609,7811,'_elementor_edit_mode','builder'),(10610,7811,'_elementor_template_type','wp-post'),(10611,7811,'_elementor_version','3.15.3'),(10612,7811,'_elementor_pro_version','3.15.0'),(10613,7811,'_wp_page_template','default'),(10614,7811,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10615,7811,'_elementor_page_assets','a:0:{}'),(10616,7811,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(10620,7812,'_thumbnail_id','7810'),(10621,7812,'_elementor_edit_mode','builder'),(10622,7812,'_elementor_template_type','wp-post'),(10623,7812,'_elementor_version','3.15.3'),(10624,7812,'_elementor_pro_version','3.15.0'),(10625,7812,'_wp_page_template','default'),(10626,7812,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10627,7812,'_elementor_page_assets','a:0:{}'),(10629,7813,'_thumbnail_id','7810'),(10630,7813,'_elementor_edit_mode','builder'),(10631,7813,'_elementor_template_type','wp-post'),(10632,7813,'_elementor_version','3.15.3'),(10633,7813,'_elementor_pro_version','3.15.0'),(10634,7813,'_wp_page_template','default'),(10635,7813,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10636,7813,'_elementor_page_assets','a:0:{}'),(10638,7814,'_thumbnail_id','7810'),(10639,7814,'_elementor_edit_mode','builder'),(10640,7814,'_elementor_template_type','wp-post'),(10641,7814,'_elementor_version','3.15.3'),(10642,7814,'_elementor_pro_version','3.15.0'),(10643,7814,'_wp_page_template','default'),(10644,7814,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>\\u00a0<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>\\u00a0<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p><br \\/>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u00a0<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p><br \\/>Learn just how powerful the Zoom solution is.<\\/p><p>\\u00a0<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p>\\u00a0<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn\\u00a01, Th\\u00e0nh ph\\u1ed1 H\\u1ed3\\u00a0Ch\\u00ed Minh, Vietnam<\\/p><p>\\u00a0<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>\\u00a0<\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10645,7814,'_elementor_page_assets','a:0:{}'),(10649,7815,'_wp_attached_file','2023/11/Le-Meridien-Saigon.jpg'),(10650,7815,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1336;s:6:\"height\";i:890;s:4:\"file\";s:30:\"2023/11/Le-Meridien-Saigon.jpg\";s:8:\"filesize\";i:256816;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Le-Meridien-Saigon-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13225;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Le-Meridien-Saigon-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Le-Meridien-Saigon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6410;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Le-Meridien-Saigon-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63615;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:30:\"Le-Meridien-Saigon-354x455.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32781;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:30:\"Le-Meridien-Saigon-355x345.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24890;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:30:\"Le-Meridien-Saigon-738x400.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52272;}}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:{}}}'),(10653,7816,'_thumbnail_id','7810'),(10654,7816,'_elementor_edit_mode','builder'),(10655,7816,'_elementor_template_type','wp-post'),(10656,7816,'_elementor_version','3.15.3'),(10657,7816,'_elementor_pro_version','3.15.0'),(10658,7816,'_wp_page_template','default'),(10659,7816,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>\\u00a0<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>\\u00a0<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p><br \\/>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u00a0<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p><br \\/>Learn just how powerful the Zoom solution is.<\\/p><p>\\u00a0<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p>\\u00a0<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn\\u00a01, Th\\u00e0nh ph\\u1ed1 H\\u1ed3\\u00a0Ch\\u00ed Minh, Vietnam<\\/p><p>\\u00a0<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>\\u00a0<\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10660,7816,'_elementor_page_assets','a:0:{}'),(10662,7817,'_thumbnail_id','7810'),(10663,7817,'_elementor_edit_mode','builder'),(10664,7817,'_elementor_template_type','wp-post'),(10665,7817,'_elementor_version','3.15.3'),(10666,7817,'_elementor_pro_version','3.15.0'),(10667,7817,'_wp_page_template','default'),(10668,7817,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>\\u00a0<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>\\u00a0<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p><br \\/>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u00a0<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p><br \\/>Learn just how powerful the Zoom solution is.<\\/p><p>\\u00a0<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p>\\u00a0<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn\\u00a01, Th\\u00e0nh ph\\u1ed1 H\\u1ed3\\u00a0Ch\\u00ed Minh, Vietnam<\\/p><p>\\u00a0<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>\\u00a0<\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10669,7817,'_elementor_page_assets','a:0:{}'),(10671,7818,'_thumbnail_id','7810'),(10672,7818,'_elementor_edit_mode','builder'),(10673,7818,'_elementor_template_type','wp-post'),(10674,7818,'_elementor_version','3.15.3'),(10675,7818,'_elementor_pro_version','3.15.0'),(10676,7818,'_wp_page_template','default'),(10677,7818,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh,\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10678,7818,'_elementor_page_assets','a:0:{}'),(10684,7819,'_thumbnail_id','7810'),(10685,7819,'_elementor_edit_mode','builder'),(10686,7819,'_elementor_template_type','wp-post'),(10687,7819,'_elementor_version','3.15.3'),(10688,7819,'_elementor_pro_version','3.15.0'),(10689,7819,'_wp_page_template','default'),(10690,7819,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh,\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10691,7819,'_elementor_page_assets','a:0:{}'),(10693,7820,'_thumbnail_id','7810'),(10694,7820,'_elementor_edit_mode','builder'),(10695,7820,'_elementor_template_type','wp-post'),(10696,7820,'_elementor_version','3.15.3'),(10697,7820,'_elementor_pro_version','3.15.0'),(10698,7820,'_wp_page_template','default'),(10699,7820,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh,\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10700,7820,'_elementor_page_assets','a:0:{}'),(10702,7821,'_thumbnail_id','7810'),(10703,7821,'_elementor_edit_mode','builder'),(10704,7821,'_elementor_template_type','wp-post'),(10705,7821,'_elementor_version','3.15.3'),(10706,7821,'_elementor_pro_version','3.15.0'),(10707,7821,'_wp_page_template','default'),(10708,7821,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh,\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10709,7821,'_elementor_page_assets','a:0:{}'),(10725,7823,'_thumbnail_id','7810'),(10726,7823,'_elementor_edit_mode','builder'),(10727,7823,'_elementor_template_type','wp-post'),(10728,7823,'_elementor_version','3.15.3'),(10729,7823,'_elementor_pro_version','3.15.0'),(10730,7823,'_wp_page_template','default'),(10731,7823,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh,\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10732,7823,'_elementor_page_assets','a:0:{}'),(10733,7824,'_thumbnail_id','7810'),(10734,7824,'_elementor_edit_mode','builder'),(10735,7824,'_elementor_template_type','wp-post'),(10736,7824,'_elementor_version','3.15.3'),(10737,7824,'_elementor_pro_version','3.15.0'),(10738,7824,'_wp_page_template','default'),(10739,7824,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh,\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10740,7824,'_elementor_page_assets','a:0:{}'),(10741,7825,'_thumbnail_id','7810'),(10742,7825,'_elementor_edit_mode','builder'),(10743,7825,'_elementor_template_type','wp-post'),(10744,7825,'_elementor_version','3.15.3'),(10745,7825,'_elementor_pro_version','3.15.0'),(10746,7825,'_wp_page_template','default'),(10747,7825,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh,\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10748,7825,'_elementor_page_assets','a:0:{}'),(10753,7826,'_thumbnail_id','7810'),(10754,7826,'_elementor_edit_mode','builder'),(10755,7826,'_elementor_template_type','wp-post'),(10756,7826,'_elementor_version','3.15.3'),(10757,7826,'_elementor_pro_version','3.15.0'),(10758,7826,'_wp_page_template','default'),(10759,7826,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh,\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10760,7826,'_elementor_page_assets','a:0:{}'),(10762,7827,'_thumbnail_id','7810'),(10763,7827,'_elementor_edit_mode','builder'),(10764,7827,'_elementor_template_type','wp-post'),(10765,7827,'_elementor_version','3.15.3'),(10766,7827,'_elementor_pro_version','3.15.0'),(10767,7827,'_wp_page_template','default'),(10768,7827,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh,\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10769,7827,'_elementor_page_assets','a:0:{}'),(10771,7828,'_thumbnail_id','7810'),(10772,7828,'_elementor_edit_mode','builder'),(10773,7828,'_elementor_template_type','wp-post'),(10774,7828,'_elementor_version','3.15.3'),(10775,7828,'_elementor_pro_version','3.15.0'),(10776,7828,'_wp_page_template','default'),(10777,7828,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10778,7828,'_elementor_page_assets','a:0:{}'),(10784,7829,'_thumbnail_id','7810'),(10785,7829,'_elementor_edit_mode','builder'),(10786,7829,'_elementor_template_type','wp-post'),(10787,7829,'_elementor_version','3.15.3'),(10788,7829,'_elementor_pro_version','3.15.0'),(10789,7829,'_wp_page_template','default'),(10790,7829,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10791,7829,'_elementor_page_assets','a:0:{}'),(10793,7830,'_thumbnail_id','7810'),(10794,7830,'_elementor_edit_mode','builder'),(10795,7830,'_elementor_template_type','wp-post'),(10796,7830,'_elementor_version','3.15.3'),(10797,7830,'_elementor_pro_version','3.15.0'),(10798,7830,'_wp_page_template','default'),(10799,7830,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10800,7830,'_elementor_page_assets','a:0:{}'),(10802,7831,'_thumbnail_id','7810'),(10803,7831,'_elementor_edit_mode','builder'),(10804,7831,'_elementor_template_type','wp-post'),(10805,7831,'_elementor_version','3.15.3'),(10806,7831,'_elementor_pro_version','3.15.0'),(10807,7831,'_wp_page_template','default'),(10808,7831,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10809,7831,'_elementor_page_assets','a:0:{}'),(10813,7832,'_thumbnail_id','7810'),(10814,7832,'_elementor_edit_mode','builder'),(10815,7832,'_elementor_template_type','wp-post'),(10816,7832,'_elementor_version','3.15.3'),(10817,7832,'_elementor_pro_version','3.15.0'),(10818,7832,'_wp_page_template','default'),(10819,7832,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10820,7832,'_elementor_page_assets','a:0:{}'),(10822,7833,'_thumbnail_id','7810'),(10823,7833,'_elementor_edit_mode','builder'),(10824,7833,'_elementor_template_type','wp-post'),(10825,7833,'_elementor_version','3.15.3'),(10826,7833,'_elementor_pro_version','3.15.0'),(10827,7833,'_wp_page_template','default'),(10828,7833,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10829,7833,'_elementor_page_assets','a:0:{}'),(10831,7834,'_thumbnail_id','7810'),(10832,7834,'_elementor_edit_mode','builder'),(10833,7834,'_elementor_template_type','wp-post'),(10834,7834,'_elementor_version','3.15.3'),(10835,7834,'_elementor_pro_version','3.15.0'),(10836,7834,'_wp_page_template','default'),(10837,7834,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10838,7834,'_elementor_page_assets','a:0:{}'),(10843,7835,'_thumbnail_id','7810'),(10844,7835,'_elementor_edit_mode','builder'),(10845,7835,'_elementor_template_type','wp-post'),(10846,7835,'_elementor_version','3.15.3'),(10847,7835,'_elementor_pro_version','3.15.0'),(10848,7835,'_wp_page_template','default'),(10849,7835,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10850,7835,'_elementor_page_assets','a:0:{}'),(10851,7836,'_thumbnail_id','7810'),(10852,7836,'_elementor_edit_mode','builder'),(10853,7836,'_elementor_template_type','wp-post'),(10854,7836,'_elementor_version','3.15.3'),(10855,7836,'_elementor_pro_version','3.15.0'),(10856,7836,'_wp_page_template','default'),(10857,7836,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10858,7836,'_elementor_page_assets','a:0:{}'),(10859,7837,'_thumbnail_id','7810'),(10860,7837,'_elementor_edit_mode','builder'),(10861,7837,'_elementor_template_type','wp-post'),(10862,7837,'_elementor_version','3.15.3'),(10863,7837,'_elementor_pro_version','3.15.0'),(10864,7837,'_wp_page_template','default'),(10865,7837,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10866,7837,'_elementor_page_assets','a:0:{}'),(10870,7838,'_thumbnail_id','7810'),(10871,7838,'_elementor_edit_mode','builder'),(10872,7838,'_elementor_template_type','wp-post'),(10873,7838,'_elementor_version','3.15.3'),(10874,7838,'_elementor_pro_version','3.15.0'),(10875,7838,'_wp_page_template','default'),(10876,7838,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10877,7838,'_elementor_page_assets','a:0:{}'),(10878,7839,'_thumbnail_id','7810'),(10879,7839,'_elementor_edit_mode','builder'),(10880,7839,'_elementor_template_type','wp-post'),(10881,7839,'_elementor_version','3.15.3'),(10882,7839,'_elementor_pro_version','3.15.0'),(10883,7839,'_wp_page_template','default'),(10884,7839,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10885,7839,'_elementor_page_assets','a:0:{}'),(10886,7840,'_thumbnail_id','7810'),(10887,7840,'_elementor_edit_mode','builder'),(10888,7840,'_elementor_template_type','wp-post'),(10889,7840,'_elementor_version','3.15.3'),(10890,7840,'_elementor_pro_version','3.15.0'),(10891,7840,'_wp_page_template','default'),(10892,7840,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/p><p>quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10893,7840,'_elementor_page_assets','a:0:{}'),(10898,7841,'_thumbnail_id','7810'),(10899,7841,'_elementor_edit_mode','builder'),(10900,7841,'_elementor_template_type','wp-post'),(10901,7841,'_elementor_version','3.15.3'),(10902,7841,'_elementor_pro_version','3.15.0'),(10903,7841,'_wp_page_template','default'),(10904,7841,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/p><p>quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10905,7841,'_elementor_page_assets','a:0:{}'),(10907,7842,'_thumbnail_id','7810'),(10908,7842,'_elementor_edit_mode','builder'),(10909,7842,'_elementor_template_type','wp-post'),(10910,7842,'_elementor_version','3.15.3'),(10911,7842,'_elementor_pro_version','3.15.0'),(10912,7842,'_wp_page_template','default'),(10913,7842,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/p><p>quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10914,7842,'_elementor_page_assets','a:0:{}'),(10916,7843,'_thumbnail_id','7810'),(10917,7843,'_elementor_edit_mode','builder'),(10918,7843,'_elementor_template_type','wp-post'),(10919,7843,'_elementor_version','3.15.3'),(10920,7843,'_elementor_pro_version','3.15.0'),(10921,7843,'_wp_page_template','default'),(10922,7843,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p>t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10923,7843,'_elementor_page_assets','a:0:{}'),(10929,7844,'_thumbnail_id','7810'),(10930,7844,'_elementor_edit_mode','builder'),(10931,7844,'_elementor_template_type','wp-post'),(10932,7844,'_elementor_version','3.15.3'),(10933,7844,'_elementor_pro_version','3.15.0'),(10934,7844,'_wp_page_template','default'),(10935,7844,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p>t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10936,7844,'_elementor_page_assets','a:0:{}'),(10938,7845,'_thumbnail_id','7810'),(10939,7845,'_elementor_edit_mode','builder'),(10940,7845,'_elementor_template_type','wp-post'),(10941,7845,'_elementor_version','3.15.3'),(10942,7845,'_elementor_pro_version','3.15.0'),(10943,7845,'_wp_page_template','default'),(10944,7845,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p>t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10945,7845,'_elementor_page_assets','a:0:{}'),(10947,7846,'_thumbnail_id','7810'),(10948,7846,'_elementor_edit_mode','builder'),(10949,7846,'_elementor_template_type','wp-post'),(10950,7846,'_elementor_version','3.15.3'),(10951,7846,'_elementor_pro_version','3.15.0'),(10952,7846,'_wp_page_template','default'),(10953,7846,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10954,7846,'_elementor_page_assets','a:0:{}'),(10970,7848,'_thumbnail_id','7810'),(10971,7848,'_elementor_edit_mode','builder'),(10972,7848,'_elementor_template_type','wp-post'),(10973,7848,'_elementor_version','3.15.3'),(10974,7848,'_elementor_pro_version','3.15.0'),(10975,7848,'_wp_page_template','default'),(10976,7848,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10977,7848,'_elementor_page_assets','a:0:{}'),(10978,7849,'_thumbnail_id','7810'),(10979,7849,'_elementor_edit_mode','builder'),(10980,7849,'_elementor_template_type','wp-post'),(10981,7849,'_elementor_version','3.15.3'),(10982,7849,'_elementor_pro_version','3.15.0'),(10983,7849,'_wp_page_template','default'),(10984,7849,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p><strong>8.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p><strong>9.15AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p><strong>9.20AM<\\/strong> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/p><p><strong>9.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p><strong>10.00AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p><strong>10.30AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p><strong>10.45AM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p><strong>11.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p><strong>12.00PM<\\/strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10985,7849,'_elementor_page_assets','a:0:{}'),(10986,7850,'_thumbnail_id','7810'),(10987,7850,'_elementor_edit_mode','builder'),(10988,7850,'_elementor_template_type','wp-post'),(10989,7850,'_elementor_version','3.15.3'),(10990,7850,'_elementor_pro_version','3.15.0'),(10991,7850,'_wp_page_template','default'),(10992,7850,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c59a489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f69fc3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.164},\"elements\":[{\"id\":\"80bbddd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>8.30AM<\\/strong>\\u00a0\\u00a0<\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">9.15AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0\\u00a0<\\/span><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">9.20AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><\\/p><p><strong>9.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/p><p><strong>10.00AM<\\/strong><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>10.30AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">\\u00a0<br \\/><\\/strong><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">10.45AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 <br \\/><\\/span><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">11.30AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><\\/p><p><strong>12.00PM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34d5ea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.836},\"elements\":[{\"id\":\"6e7dcc2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p>Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p>Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7 t\\u1ecbch Christopher Yap<\\/p><p>Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p>Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p>Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p>Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p>Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p>Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(10993,7850,'_elementor_page_assets','a:0:{}'),(11008,7852,'_thumbnail_id','7810'),(11009,7852,'_elementor_edit_mode','builder'),(11010,7852,'_elementor_template_type','wp-post'),(11011,7852,'_elementor_version','3.15.3'),(11012,7852,'_elementor_pro_version','3.15.0'),(11013,7852,'_wp_page_template','default'),(11014,7852,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c59a489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f69fc3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.164},\"elements\":[{\"id\":\"80bbddd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>8.30AM<\\/strong>\\u00a0\\u00a0<\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">9.15AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0\\u00a0<\\/span><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">9.20AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><\\/p><p><strong>9.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/p><p><strong>10.00AM<\\/strong><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>10.30AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">\\u00a0<br \\/><\\/strong><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">10.45AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 <br \\/><\\/span><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">11.30AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><\\/p><p><strong>12.00PM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34d5ea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.836},\"elements\":[{\"id\":\"6e7dcc2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p>Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p>Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7 t\\u1ecbch Christopher Yap<\\/p><p>Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p>Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p>Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p>Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p>Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p>Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11015,7852,'_elementor_page_assets','a:0:{}'),(11016,7853,'_thumbnail_id','7810'),(11017,7853,'_elementor_edit_mode','builder'),(11018,7853,'_elementor_template_type','wp-post'),(11019,7853,'_elementor_version','3.15.3'),(11020,7853,'_elementor_pro_version','3.15.0'),(11021,7853,'_wp_page_template','default'),(11022,7853,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><strong>ESIGO<\\/strong><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><strong>Zoom<\\/strong><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c59a489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f69fc3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.164},\"elements\":[{\"id\":\"80bbddd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>8.30AM<\\/strong>\\u00a0\\u00a0<\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">9.15AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0\\u00a0<\\/span><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">9.20AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><\\/p><p><strong>9.30AM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/p><p><strong>10.00AM<\\/strong><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>10.30AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">\\u00a0<br \\/><\\/strong><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">10.45AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 <br \\/><\\/span><\\/p><p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">11.30AM<\\/strong><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><\\/p><p><strong>12.00PM<\\/strong>\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34d5ea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.836},\"elements\":[{\"id\":\"6e7dcc2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/p><p>Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/p><p>Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7 t\\u1ecbch Christopher Yap<\\/p><p>Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/p><p>Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/p><p>Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/p><p>Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/p><p>Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/p><p>Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11023,7853,'_elementor_page_assets','a:0:{}'),(11024,7854,'_thumbnail_id','7810'),(11025,7854,'_elementor_edit_mode','builder'),(11026,7854,'_elementor_template_type','wp-post'),(11027,7854,'_elementor_version','3.15.3'),(11028,7854,'_elementor_pro_version','3.15.0'),(11029,7854,'_wp_page_template','default'),(11030,7854,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15.387},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>10.30AM<\\/span><\\/span><\\/p><p><br \\/><br \\/><span style=\\\"color: #000000; font-weight: bold;\\\">10.45AM<\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":84.279},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11031,7854,'_elementor_page_assets','a:0:{}'),(11036,7855,'_thumbnail_id','7810'),(11037,7855,'_elementor_edit_mode','builder'),(11038,7855,'_elementor_template_type','wp-post'),(11039,7855,'_elementor_version','3.15.3'),(11040,7855,'_elementor_pro_version','3.15.0'),(11041,7855,'_wp_page_template','default'),(11042,7855,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15.387},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>10.30AM<\\/span><\\/span><\\/p><p><br \\/><br \\/><span style=\\\"color: #000000; font-weight: bold;\\\">10.45AM<\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":84.279},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11043,7855,'_elementor_page_assets','a:0:{}'),(11045,7856,'_thumbnail_id','7810'),(11046,7856,'_elementor_edit_mode','builder'),(11047,7856,'_elementor_template_type','wp-post'),(11048,7856,'_elementor_version','3.15.3'),(11049,7856,'_elementor_pro_version','3.15.0'),(11050,7856,'_wp_page_template','default'),(11051,7856,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15.387},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>10.30AM<\\/span><\\/span><\\/p><p><br \\/><br \\/><span style=\\\"color: #000000; font-weight: bold;\\\">10.45AM<\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":84.279},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11052,7856,'_elementor_page_assets','a:0:{}'),(11054,7857,'_thumbnail_id','7810'),(11055,7857,'_elementor_edit_mode','builder'),(11056,7857,'_elementor_template_type','wp-post'),(11057,7857,'_elementor_version','3.15.3'),(11058,7857,'_elementor_pro_version','3.15.0'),(11059,7857,'_wp_page_template','default'),(11060,7857,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15.387},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br><\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>9.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>10.00AM<\\/span><\\/span><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">10.30AM<\\/span><\\/p>\\n<p><span style=\\\"color: #000000; font-weight: bold;\\\">10.45AM<\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br>12.00PM<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":84.279},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11061,7857,'_elementor_page_assets','a:0:{}'),(11067,7858,'_thumbnail_id','7810'),(11068,7858,'_elementor_edit_mode','builder'),(11069,7858,'_elementor_template_type','wp-post'),(11070,7858,'_elementor_version','3.15.3'),(11071,7858,'_elementor_pro_version','3.15.0'),(11072,7858,'_wp_page_template','default'),(11073,7858,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15.387},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br><\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>9.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>10.00AM<\\/span><\\/span><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">10.30AM<\\/span><\\/p>\\n<p><span style=\\\"color: #000000; font-weight: bold;\\\">10.45AM<\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br>12.00PM<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":84.279},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11074,7858,'_elementor_page_assets','a:0:{}'),(11076,7859,'_thumbnail_id','7810'),(11077,7859,'_elementor_edit_mode','builder'),(11078,7859,'_elementor_template_type','wp-post'),(11079,7859,'_elementor_version','3.15.3'),(11080,7859,'_elementor_pro_version','3.15.0'),(11081,7859,'_wp_page_template','default'),(11082,7859,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15.387},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br><\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>9.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>10.00AM<\\/span><\\/span><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">10.30AM<\\/span><\\/p>\\n<p><span style=\\\"color: #000000; font-weight: bold;\\\">10.45AM<\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br>12.00PM<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":84.279},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11083,7859,'_elementor_page_assets','a:0:{}'),(11085,7860,'_thumbnail_id','7810'),(11086,7860,'_elementor_edit_mode','builder'),(11087,7860,'_elementor_template_type','wp-post'),(11088,7860,'_elementor_version','3.15.3'),(11089,7860,'_elementor_pro_version','3.15.0'),(11090,7860,'_wp_page_template','default'),(11091,7860,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br><\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>9.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br>10.30AM<\\/span><br><\\/p>\\n<p><span style=\\\"color: rgb(0, 0, 0); font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br><br>10.45AM<\\/span><br><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br>12.00PM<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11092,7860,'_elementor_page_assets','a:0:{}'),(11098,7861,'_thumbnail_id','7810'),(11099,7861,'_elementor_edit_mode','builder'),(11100,7861,'_elementor_template_type','wp-post'),(11101,7861,'_elementor_version','3.15.3'),(11102,7861,'_elementor_pro_version','3.15.0'),(11103,7861,'_wp_page_template','default'),(11104,7861,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br><\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>9.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br>10.30AM<\\/span><br><\\/p>\\n<p><span style=\\\"color: rgb(0, 0, 0); font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br><br>10.45AM<\\/span><br><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br>12.00PM<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11105,7861,'_elementor_page_assets','a:0:{}'),(11107,7862,'_thumbnail_id','7810'),(11108,7862,'_elementor_edit_mode','builder'),(11109,7862,'_elementor_template_type','wp-post'),(11110,7862,'_elementor_version','3.15.3'),(11111,7862,'_elementor_pro_version','3.15.0'),(11112,7862,'_wp_page_template','default'),(11113,7862,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br><\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>9.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br>10.30AM<\\/span><br><\\/p>\\n<p><span style=\\\"color: rgb(0, 0, 0); font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br><br>10.45AM<\\/span><br><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br>12.00PM<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11114,7862,'_elementor_page_assets','a:0:{}'),(11116,7863,'_thumbnail_id','7810'),(11117,7863,'_elementor_edit_mode','builder'),(11118,7863,'_elementor_template_type','wp-post'),(11119,7863,'_elementor_version','3.15.3'),(11120,7863,'_elementor_pro_version','3.15.0'),(11121,7863,'_wp_page_template','default'),(11122,7863,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br \\/>10.30AM<\\/span><\\/p><p><span style=\\\"color: #000000; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/><br \\/>10.45AM<\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11123,7863,'_elementor_page_assets','a:0:{}'),(11129,7864,'_thumbnail_id','7810'),(11130,7864,'_elementor_edit_mode','builder'),(11131,7864,'_elementor_template_type','wp-post'),(11132,7864,'_elementor_version','3.15.3'),(11133,7864,'_elementor_pro_version','3.15.0'),(11134,7864,'_wp_page_template','default'),(11135,7864,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br \\/>10.30AM<\\/span><\\/p><p><span style=\\\"color: #000000; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/><br \\/>10.45AM<\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11136,7864,'_elementor_page_assets','a:0:{}'),(11138,7865,'_thumbnail_id','7810'),(11139,7865,'_elementor_edit_mode','builder'),(11140,7865,'_elementor_template_type','wp-post'),(11141,7865,'_elementor_version','3.15.3'),(11142,7865,'_elementor_pro_version','3.15.0'),(11143,7865,'_wp_page_template','default'),(11144,7865,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br \\/>10.30AM<\\/span><\\/p><p><span style=\\\"color: #000000; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/><br \\/>10.45AM<\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11145,7865,'_elementor_page_assets','a:0:{}'),(11147,7866,'_thumbnail_id','7810'),(11148,7866,'_elementor_edit_mode','builder'),(11149,7866,'_elementor_template_type','wp-post'),(11150,7866,'_elementor_version','3.15.3'),(11151,7866,'_elementor_pro_version','3.15.0'),(11152,7866,'_wp_page_template','default'),(11153,7866,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<br \\/><\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br \\/>10.30AM<\\/span><\\/p><p><span style=\\\"color: #000000; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/><br \\/>10.45AM<\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11154,7866,'_elementor_page_assets','a:0:{}'),(11160,7867,'_thumbnail_id','7810'),(11161,7867,'_elementor_edit_mode','builder'),(11162,7867,'_elementor_template_type','wp-post'),(11163,7867,'_elementor_version','3.15.3'),(11164,7867,'_elementor_pro_version','3.15.0'),(11165,7867,'_wp_page_template','default'),(11166,7867,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<br \\/><\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br \\/>10.30AM<\\/span><\\/p><p><span style=\\\"color: #000000; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/><br \\/>10.45AM<\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11167,7867,'_elementor_page_assets','a:0:{}'),(11169,7868,'_thumbnail_id','7810'),(11170,7868,'_elementor_edit_mode','builder'),(11171,7868,'_elementor_template_type','wp-post'),(11172,7868,'_elementor_version','3.15.3'),(11173,7868,'_elementor_pro_version','3.15.0'),(11174,7868,'_wp_page_template','default'),(11175,7868,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<br \\/><\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br \\/>10.30AM<\\/span><\\/p><p><span style=\\\"color: #000000; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/><br \\/>10.45AM<\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11176,7868,'_elementor_page_assets','a:0:{}'),(11178,7869,'_thumbnail_id','7810'),(11179,7869,'_elementor_edit_mode','builder'),(11180,7869,'_elementor_template_type','wp-post'),(11181,7869,'_elementor_version','3.15.3'),(11182,7869,'_elementor_pro_version','3.15.0'),(11183,7869,'_wp_page_template','default'),(11184,7869,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br><\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>9.30AM<br><\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br><br>10.30AM<\\/span><\\/p>\\n<p><span style=\\\"color: #000000; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><\\/span><\\/p>\\n<p>10.45AM<\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br>12.00PM<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11185,7869,'_elementor_page_assets','a:0:{}'),(11191,7870,'_thumbnail_id','7810'),(11192,7870,'_elementor_edit_mode','builder'),(11193,7870,'_elementor_template_type','wp-post'),(11194,7870,'_elementor_version','3.15.3'),(11195,7870,'_elementor_pro_version','3.15.0'),(11196,7870,'_wp_page_template','default'),(11197,7870,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br><\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>9.30AM<br><\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br><br>10.30AM<\\/span><\\/p>\\n<p><span style=\\\"color: #000000; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><\\/span><\\/p>\\n<p>10.45AM<\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br>12.00PM<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11198,7870,'_elementor_page_assets','a:0:{}'),(11200,7871,'_thumbnail_id','7810'),(11201,7871,'_elementor_edit_mode','builder'),(11202,7871,'_elementor_template_type','wp-post'),(11203,7871,'_elementor_version','3.15.3'),(11204,7871,'_elementor_pro_version','3.15.0'),(11205,7871,'_wp_page_template','default'),(11206,7871,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br><\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br>9.30AM<br><\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br><br>10.30AM<\\/span><\\/p>\\n<p><span style=\\\"color: #000000; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><\\/span><\\/p>\\n<p>10.45AM<\\/p>\\n<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p>\\n<p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br>12.00PM<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11207,7871,'_elementor_page_assets','a:0:{}'),(11209,7872,'_thumbnail_id','7810'),(11210,7872,'_elementor_edit_mode','builder'),(11211,7872,'_elementor_template_type','wp-post'),(11212,7872,'_elementor_version','3.15.3'),(11213,7872,'_elementor_pro_version','3.15.0'),(11214,7872,'_wp_page_template','default');
INSERT INTO `wpsl_postmeta` VALUES (11215,7872,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">8.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nRegistration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">9.15AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nIntroduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">9.20AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nOverview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan&nbsp;ESIGO\\nAsia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch&nbsp;Christopher Yap<\\/span><o:p><\\/o:p><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">9.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nHarmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">10.00AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nLive Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">10.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nOverview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac&nbsp;ESIGO\\nVN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">10.45AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nShowcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">11.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of\\ndoor gifts and lucky draw \\/&nbsp;Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><o:p><\\/o:p><\\/p><p>\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family:&quot;Times New Roman&quot;;\\ncolor:black\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family:&quot;Times New Roman&quot;;\\ncolor:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch\\n\\/&nbsp;\\u0102n tr\\u01b0a<\\/span><o:p><\\/o:p><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<br \\/><\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br \\/><br \\/>10.30AM<\\/span><\\/p><p>\\u00a0<\\/p><p>10.45AM<\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11216,7872,'_elementor_page_assets','a:0:{}'),(11222,7873,'_thumbnail_id','7810'),(11223,7873,'_elementor_edit_mode','builder'),(11224,7873,'_elementor_template_type','wp-post'),(11225,7873,'_elementor_version','3.15.3'),(11226,7873,'_elementor_pro_version','3.15.0'),(11227,7873,'_wp_page_template','default'),(11228,7873,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">8.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nRegistration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">9.15AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nIntroduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">9.20AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nOverview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan&nbsp;ESIGO\\nAsia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch&nbsp;Christopher Yap<\\/span><o:p><\\/o:p><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">9.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nHarmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">10.00AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nLive Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">10.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nOverview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac&nbsp;ESIGO\\nVN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">10.45AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nShowcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">11.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of\\ndoor gifts and lucky draw \\/&nbsp;Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><o:p><\\/o:p><\\/p><p>\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family:&quot;Times New Roman&quot;;\\ncolor:black\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family:&quot;Times New Roman&quot;;\\ncolor:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch\\n\\/&nbsp;\\u0102n tr\\u01b0a<\\/span><o:p><\\/o:p><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<br \\/><\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br \\/><br \\/>10.30AM<\\/span><\\/p><p>\\u00a0<\\/p><p>10.45AM<\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11229,7873,'_elementor_page_assets','a:0:{}'),(11231,7874,'_thumbnail_id','7810'),(11232,7874,'_elementor_edit_mode','builder'),(11233,7874,'_elementor_template_type','wp-post'),(11234,7874,'_elementor_version','3.15.3'),(11235,7874,'_elementor_pro_version','3.15.0'),(11236,7874,'_wp_page_template','default'),(11237,7874,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">8.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nRegistration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">9.15AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nIntroduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">9.20AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nOverview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan&nbsp;ESIGO\\nAsia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch&nbsp;Christopher Yap<\\/span><o:p><\\/o:p><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">9.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nHarmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">10.00AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nLive Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">10.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nOverview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac&nbsp;ESIGO\\nVN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">10.45AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\nShowcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><o:p><\\/o:p><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color:black\\\">11.30AM<\\/span><\\/b><span style=\\\"color:black\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of\\ndoor gifts and lucky draw \\/&nbsp;Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><o:p><\\/o:p><\\/p><p>\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family:&quot;Times New Roman&quot;;\\ncolor:black\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family:&quot;Times New Roman&quot;;\\ncolor:black\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch\\n\\/&nbsp;\\u0102n tr\\u01b0a<\\/span><o:p><\\/o:p><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f597c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d6c9cd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.202},\"elements\":[{\"id\":\"b8c308c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/><\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/span><\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\"><br \\/>9.30AM<br \\/><\\/span><\\/span><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: bold; text-align: var(--bs-body-text-align);\\\"><br \\/><br \\/>10.30AM<\\/span><\\/p><p>\\u00a0<\\/p><p>10.45AM<\\/p><p><span style=\\\"font-weight: bold; color: #555555;\\\"><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/span><\\/p><p><span style=\\\"color: black; font-weight: bold; font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\"><br \\/>12.00PM<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2aa690\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":81.464},\"elements\":[{\"id\":\"7eddb99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black;\\\">Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: black; font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11238,7874,'_elementor_page_assets','a:0:{}'),(11240,7875,'_thumbnail_id','7810'),(11241,7875,'_elementor_edit_mode','builder'),(11242,7875,'_elementor_template_type','wp-post'),(11243,7875,'_elementor_version','3.15.3'),(11244,7875,'_elementor_pro_version','3.15.0'),(11245,7875,'_wp_page_template','default'),(11246,7875,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11247,7875,'_elementor_page_assets','a:0:{}'),(11253,7876,'_thumbnail_id','7810'),(11254,7876,'_elementor_edit_mode','builder'),(11255,7876,'_elementor_template_type','wp-post'),(11256,7876,'_elementor_version','3.15.3'),(11257,7876,'_elementor_pro_version','3.15.0'),(11258,7876,'_wp_page_template','default'),(11259,7876,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11260,7876,'_elementor_page_assets','a:0:{}'),(11262,7877,'_thumbnail_id','7810'),(11263,7877,'_elementor_edit_mode','builder'),(11264,7877,'_elementor_template_type','wp-post'),(11265,7877,'_elementor_version','3.15.3'),(11266,7877,'_elementor_pro_version','3.15.0'),(11267,7877,'_wp_page_template','default'),(11268,7877,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u t\\u1ed5ng quan\\u00a0ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch\\u00a0Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11269,7877,'_elementor_page_assets','a:0:{}'),(11271,7878,'_thumbnail_id','7810'),(11272,7878,'_elementor_edit_mode','builder'),(11273,7878,'_elementor_template_type','wp-post'),(11274,7878,'_elementor_version','3.15.3'),(11275,7878,'_elementor_pro_version','3.15.0'),(11276,7878,'_wp_page_template','default'),(11277,7878,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11278,7878,'_elementor_page_assets','a:0:{}'),(11284,7879,'_thumbnail_id','7810'),(11285,7879,'_elementor_edit_mode','builder'),(11286,7879,'_elementor_template_type','wp-post'),(11287,7879,'_elementor_version','3.15.3'),(11288,7879,'_elementor_pro_version','3.15.0'),(11289,7879,'_wp_page_template','default'),(11290,7879,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11291,7879,'_elementor_page_assets','a:0:{}'),(11293,7880,'_thumbnail_id','7810'),(11294,7880,'_elementor_edit_mode','builder'),(11295,7880,'_elementor_template_type','wp-post'),(11296,7880,'_elementor_version','3.15.3'),(11297,7880,'_elementor_pro_version','3.15.0'),(11298,7880,'_wp_page_template','default'),(11299,7880,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11300,7880,'_elementor_page_assets','a:0:{}'),(11302,7881,'_thumbnail_id','7810'),(11303,7881,'_elementor_edit_mode','builder'),(11304,7881,'_elementor_template_type','wp-post'),(11305,7881,'_elementor_version','3.15.3'),(11306,7881,'_elementor_pro_version','3.15.0'),(11307,7881,'_wp_page_template','default'),(11308,7881,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11309,7881,'_elementor_page_assets','a:0:{}'),(11315,7882,'_thumbnail_id','7810'),(11316,7882,'_elementor_edit_mode','builder'),(11317,7882,'_elementor_template_type','wp-post'),(11318,7882,'_elementor_version','3.15.3'),(11319,7882,'_elementor_pro_version','3.15.0'),(11320,7882,'_wp_page_template','default'),(11321,7882,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11322,7882,'_elementor_page_assets','a:0:{}'),(11324,7883,'_thumbnail_id','7810'),(11325,7883,'_elementor_edit_mode','builder'),(11326,7883,'_elementor_template_type','wp-post'),(11327,7883,'_elementor_version','3.15.3'),(11328,7883,'_elementor_pro_version','3.15.0'),(11329,7883,'_wp_page_template','default'),(11330,7883,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11331,7883,'_elementor_page_assets','a:0:{}'),(11333,7884,'_thumbnail_id','7810'),(11334,7884,'_elementor_edit_mode','builder'),(11335,7884,'_elementor_template_type','wp-post'),(11336,7884,'_elementor_version','3.15.3'),(11337,7884,'_elementor_pro_version','3.15.0'),(11338,7884,'_wp_page_template','default'),(11339,7884,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11340,7884,'_elementor_page_assets','a:0:{}'),(11346,7885,'_thumbnail_id','7810'),(11347,7885,'_elementor_edit_mode','builder'),(11348,7885,'_elementor_template_type','wp-post'),(11349,7885,'_elementor_version','3.15.3'),(11350,7885,'_elementor_pro_version','3.15.0'),(11351,7885,'_wp_page_template','default'),(11352,7885,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11353,7885,'_elementor_page_assets','a:0:{}'),(11355,7886,'_thumbnail_id','7810'),(11356,7886,'_elementor_edit_mode','builder'),(11357,7886,'_elementor_template_type','wp-post'),(11358,7886,'_elementor_version','3.15.3'),(11359,7886,'_elementor_pro_version','3.15.0'),(11360,7886,'_wp_page_template','default'),(11361,7886,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11362,7886,'_elementor_page_assets','a:0:{}'),(11364,7887,'_thumbnail_id','7810'),(11365,7887,'_elementor_edit_mode','builder'),(11366,7887,'_elementor_template_type','wp-post'),(11367,7887,'_elementor_version','3.15.3'),(11368,7887,'_elementor_pro_version','3.15.0'),(11369,7887,'_wp_page_template','default'),(11370,7887,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11371,7887,'_elementor_page_assets','a:0:{}'),(11377,7888,'_thumbnail_id','7810'),(11378,7888,'_elementor_edit_mode','builder'),(11379,7888,'_elementor_template_type','wp-post'),(11380,7888,'_elementor_version','3.15.3'),(11381,7888,'_elementor_pro_version','3.15.0'),(11382,7888,'_wp_page_template','default'),(11383,7888,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11384,7888,'_elementor_page_assets','a:0:{}'),(11386,7889,'_thumbnail_id','7810'),(11387,7889,'_elementor_edit_mode','builder'),(11388,7889,'_elementor_template_type','wp-post'),(11389,7889,'_elementor_version','3.15.3'),(11390,7889,'_elementor_pro_version','3.15.0'),(11391,7889,'_wp_page_template','default'),(11392,7889,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng quan c\\u1ea5u tr\\u00fac\\u00a0ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11393,7889,'_elementor_page_assets','a:0:{}'),(11395,7890,'_thumbnail_id','7810'),(11396,7890,'_elementor_edit_mode','builder'),(11397,7890,'_elementor_template_type','wp-post'),(11398,7890,'_elementor_version','3.15.3'),(11399,7890,'_elementor_pro_version','3.15.0'),(11400,7890,'_wp_page_template','default'),(11401,7890,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11402,7890,'_elementor_page_assets','a:0:{}'),(11408,7891,'_thumbnail_id','7810'),(11409,7891,'_elementor_edit_mode','builder'),(11410,7891,'_elementor_template_type','wp-post'),(11411,7891,'_elementor_version','3.15.3'),(11412,7891,'_elementor_pro_version','3.15.0'),(11413,7891,'_wp_page_template','default'),(11414,7891,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11415,7891,'_elementor_page_assets','a:0:{}'),(11417,7892,'_thumbnail_id','7810'),(11418,7892,'_elementor_edit_mode','builder'),(11419,7892,'_elementor_template_type','wp-post'),(11420,7892,'_elementor_version','3.15.3'),(11421,7892,'_elementor_pro_version','3.15.0'),(11422,7892,'_wp_page_template','default'),(11423,7892,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/\\u00a0Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11424,7892,'_elementor_page_assets','a:0:{}'),(11426,7893,'_thumbnail_id','7810'),(11427,7893,'_elementor_edit_mode','builder'),(11428,7893,'_elementor_template_type','wp-post'),(11429,7893,'_elementor_version','3.15.3'),(11430,7893,'_elementor_pro_version','3.15.0'),(11431,7893,'_wp_page_template','default'),(11432,7893,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11433,7893,'_elementor_page_assets','a:0:{}'),(11439,7894,'_thumbnail_id','7810'),(11440,7894,'_elementor_edit_mode','builder'),(11441,7894,'_elementor_template_type','wp-post'),(11442,7894,'_elementor_version','3.15.3'),(11443,7894,'_elementor_pro_version','3.15.0'),(11444,7894,'_wp_page_template','default'),(11445,7894,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11446,7894,'_elementor_page_assets','a:0:{}'),(11448,7895,'_thumbnail_id','7810'),(11449,7895,'_elementor_edit_mode','builder'),(11450,7895,'_elementor_template_type','wp-post'),(11451,7895,'_elementor_version','3.15.3'),(11452,7895,'_elementor_pro_version','3.15.0'),(11453,7895,'_wp_page_template','default'),(11454,7895,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11455,7895,'_elementor_page_assets','a:0:{}'),(11457,7896,'_thumbnail_id','7810'),(11458,7896,'_elementor_edit_mode','builder'),(11459,7896,'_elementor_template_type','wp-post'),(11460,7896,'_elementor_version','3.15.3'),(11461,7896,'_elementor_pro_version','3.15.0'),(11462,7896,'_wp_page_template','default'),(11463,7896,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11464,7896,'_elementor_page_assets','a:0:{}'),(11470,7897,'_thumbnail_id','7810'),(11471,7897,'_elementor_edit_mode','builder'),(11472,7897,'_elementor_template_type','wp-post'),(11473,7897,'_elementor_version','3.15.3'),(11474,7897,'_elementor_pro_version','3.15.0'),(11475,7897,'_wp_page_template','default'),(11476,7897,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11477,7897,'_elementor_page_assets','a:0:{}'),(11479,7898,'_thumbnail_id','7810'),(11480,7898,'_elementor_edit_mode','builder'),(11481,7898,'_elementor_template_type','wp-post'),(11482,7898,'_elementor_version','3.15.3'),(11483,7898,'_elementor_pro_version','3.15.0'),(11484,7898,'_wp_page_template','default'),(11485,7898,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11486,7898,'_elementor_page_assets','a:0:{}'),(11488,7899,'_thumbnail_id','7810'),(11489,7899,'_elementor_edit_mode','builder'),(11490,7899,'_elementor_template_type','wp-post'),(11491,7899,'_elementor_version','3.15.3'),(11492,7899,'_elementor_pro_version','3.15.0'),(11493,7899,'_wp_page_template','default'),(11494,7899,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11495,7899,'_elementor_page_assets','a:0:{}'),(11501,7900,'_thumbnail_id','7810'),(11502,7900,'_elementor_edit_mode','builder'),(11503,7900,'_elementor_template_type','wp-post'),(11504,7900,'_elementor_version','3.15.3'),(11505,7900,'_elementor_pro_version','3.15.0'),(11506,7900,'_wp_page_template','default'),(11507,7900,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11508,7900,'_elementor_page_assets','a:0:{}'),(11510,7901,'_thumbnail_id','7810'),(11511,7901,'_elementor_edit_mode','builder'),(11512,7901,'_elementor_template_type','wp-post'),(11513,7901,'_elementor_version','3.15.3'),(11514,7901,'_elementor_pro_version','3.15.0'),(11515,7901,'_wp_page_template','default'),(11516,7901,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11517,7901,'_elementor_page_assets','a:0:{}'),(11519,7902,'_thumbnail_id','7810'),(11520,7902,'_elementor_edit_mode','builder'),(11521,7902,'_elementor_template_type','wp-post'),(11522,7902,'_elementor_version','3.15.3'),(11523,7902,'_elementor_pro_version','3.15.0'),(11524,7902,'_wp_page_template','default'),(11525,7902,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11526,7902,'_elementor_page_assets','a:0:{}'),(11532,7903,'_thumbnail_id','7810'),(11533,7903,'_elementor_edit_mode','builder'),(11534,7903,'_elementor_template_type','wp-post'),(11535,7903,'_elementor_version','3.15.3'),(11536,7903,'_elementor_pro_version','3.15.0'),(11537,7903,'_wp_page_template','default'),(11538,7903,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11539,7903,'_elementor_page_assets','a:0:{}'),(11541,7904,'_thumbnail_id','7810'),(11542,7904,'_elementor_edit_mode','builder'),(11543,7904,'_elementor_template_type','wp-post'),(11544,7904,'_elementor_version','3.15.3'),(11545,7904,'_elementor_pro_version','3.15.0'),(11546,7904,'_wp_page_template','default'),(11547,7904,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11548,7904,'_elementor_page_assets','a:0:{}'),(11550,7905,'_thumbnail_id','7810'),(11551,7905,'_elementor_edit_mode','builder'),(11552,7905,'_elementor_template_type','wp-post'),(11553,7905,'_elementor_version','3.15.3'),(11554,7905,'_elementor_pro_version','3.15.0'),(11555,7905,'_wp_page_template','default'),(11556,7905,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11557,7905,'_elementor_page_assets','a:0:{}'),(11562,7906,'_thumbnail_id','7810'),(11563,7906,'_elementor_edit_mode','builder'),(11564,7906,'_elementor_template_type','wp-post'),(11565,7906,'_elementor_version','3.15.3'),(11566,7906,'_elementor_pro_version','3.15.0'),(11567,7906,'_wp_page_template','default'),(11568,7906,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11569,7906,'_elementor_page_assets','a:0:{}'),(11570,7907,'_thumbnail_id','7810'),(11571,7907,'_elementor_edit_mode','builder'),(11572,7907,'_elementor_template_type','wp-post'),(11573,7907,'_elementor_version','3.15.3'),(11574,7907,'_elementor_pro_version','3.15.0'),(11575,7907,'_wp_page_template','default'),(11576,7907,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11577,7907,'_elementor_page_assets','a:0:{}'),(11578,7908,'_thumbnail_id','7810'),(11579,7908,'_elementor_edit_mode','builder'),(11580,7908,'_elementor_template_type','wp-post'),(11581,7908,'_elementor_version','3.15.3'),(11582,7908,'_elementor_pro_version','3.15.0'),(11583,7908,'_wp_page_template','default'),(11584,7908,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11585,7908,'_elementor_page_assets','a:0:{}'),(11590,7909,'_thumbnail_id','7810'),(11591,7909,'_elementor_edit_mode','builder'),(11592,7909,'_elementor_template_type','wp-post'),(11593,7909,'_elementor_version','3.15.3'),(11594,7909,'_elementor_pro_version','3.15.0'),(11595,7909,'_wp_page_template','default'),(11596,7909,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11597,7909,'_elementor_page_assets','a:0:{}'),(11599,7910,'_thumbnail_id','7810'),(11600,7910,'_elementor_edit_mode','builder'),(11601,7910,'_elementor_template_type','wp-post'),(11602,7910,'_elementor_version','3.15.3'),(11603,7910,'_elementor_pro_version','3.15.0'),(11604,7910,'_wp_page_template','default'),(11605,7910,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11606,7910,'_elementor_page_assets','a:0:{}'),(11608,7911,'_thumbnail_id','7810'),(11609,7911,'_elementor_edit_mode','builder'),(11610,7911,'_elementor_template_type','wp-post'),(11611,7911,'_elementor_version','3.15.3'),(11612,7911,'_elementor_pro_version','3.15.0'),(11613,7911,'_wp_page_template','default'),(11614,7911,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51f834e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ec2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb7413\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.775}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11615,7911,'_elementor_page_assets','a:0:{}'),(11631,7914,'_thumbnail_id','7810'),(11632,7914,'_elementor_edit_mode','builder'),(11633,7914,'_elementor_template_type','wp-post'),(11634,7914,'_elementor_version','3.15.3'),(11635,7914,'_elementor_pro_version','3.15.0'),(11636,7914,'_wp_page_template','default'),(11637,7914,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51f834e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ec2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb7413\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.775}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11638,7914,'_elementor_page_assets','a:0:{}'),(11639,7915,'_thumbnail_id','7810'),(11640,7915,'_elementor_edit_mode','builder'),(11641,7915,'_elementor_template_type','wp-post'),(11642,7915,'_elementor_version','3.15.3'),(11643,7915,'_elementor_pro_version','3.15.0'),(11644,7915,'_wp_page_template','default'),(11645,7915,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"656a47e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc96b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd26197\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51f834e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ec2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb7413\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.775}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11646,7915,'_elementor_page_assets','a:0:{}'),(11647,7916,'_thumbnail_id','7810'),(11648,7916,'_elementor_edit_mode','builder'),(11649,7916,'_elementor_template_type','wp-post'),(11650,7916,'_elementor_version','3.15.3'),(11651,7916,'_elementor_pro_version','3.15.0'),(11652,7916,'_wp_page_template','default'),(11653,7916,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d857311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6a132df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"9895264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Picture1.png\",\"id\":7913,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.675}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11654,7916,'_elementor_page_assets','a:0:{}'),(11658,7917,'_thumbnail_id','7810'),(11659,7917,'_elementor_edit_mode','builder'),(11660,7917,'_elementor_template_type','wp-post'),(11661,7917,'_elementor_version','3.15.3'),(11662,7917,'_elementor_pro_version','3.15.0'),(11663,7917,'_wp_page_template','default'),(11664,7917,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d857311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6a132df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"9895264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Picture1.png\",\"id\":7913,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.675}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11665,7917,'_elementor_page_assets','a:0:{}'),(11666,7918,'_thumbnail_id','7810'),(11667,7918,'_elementor_edit_mode','builder'),(11668,7918,'_elementor_template_type','wp-post'),(11669,7918,'_elementor_version','3.15.3'),(11670,7918,'_elementor_pro_version','3.15.0'),(11671,7918,'_wp_page_template','default'),(11672,7918,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d857311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6a132df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"9895264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Picture1.png\",\"id\":7913,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.675}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11673,7918,'_elementor_page_assets','a:0:{}'),(11674,7919,'_thumbnail_id','7810'),(11675,7919,'_elementor_edit_mode','builder'),(11676,7919,'_elementor_template_type','wp-post'),(11677,7919,'_elementor_version','3.15.3'),(11678,7919,'_elementor_pro_version','3.15.0'),(11679,7919,'_wp_page_template','default'),(11680,7919,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d857311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6a132df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"9895264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Picture1.png\",\"id\":7913,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.675}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11681,7919,'_elementor_page_assets','a:0:{}'),(11683,7920,'_wp_attached_file','2023/11/Picture1.png'),(11684,7920,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:118;s:6:\"height\";i:44;s:4:\"file\";s:20:\"2023/11/Picture1.png\";s:8:\"filesize\";i:2659;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:{}}}'),(11696,7922,'_thumbnail_id','7810'),(11697,7922,'_elementor_edit_mode','builder'),(11698,7922,'_elementor_template_type','wp-post'),(11699,7922,'_elementor_version','3.15.3'),(11700,7922,'_elementor_pro_version','3.15.0'),(11701,7922,'_wp_page_template','default'),(11702,7922,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d857311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6a132df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"9895264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Picture1.png\",\"id\":7913,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.675}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11703,7922,'_elementor_page_assets','a:0:{}'),(11704,7923,'_thumbnail_id','7810'),(11705,7923,'_elementor_edit_mode','builder'),(11706,7923,'_elementor_template_type','wp-post'),(11707,7923,'_elementor_version','3.15.3'),(11708,7923,'_elementor_pro_version','3.15.0'),(11709,7923,'_wp_page_template','default'),(11710,7923,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p>\\n<p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1&nbsp;Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng&nbsp;Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p>\\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p>\\n<p>N\\u1ec1n t\\u1ea3ng&nbsp;Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n&nbsp;\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p>\\n<p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p>\\n<p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch&nbsp;an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng&nbsp;tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng&nbsp;video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i&nbsp;dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb&nbsp;di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p>\\n<p>Learn just how powerful the Zoom solution is.<\\/p>\\n<p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p&nbsp;Zoom!<\\/p>\\n<p><strong>Date:<\\/strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:<\\/strong>&nbsp;Le M\\u00e9ridien Saigon<br>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p>\\n<p><strong>Agenda \\/ N\\u1ed9i&nbsp;dung<\\/strong><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7&nbsp;&nbsp; t\\u1ecbch Christopher Yap<\\/span><\\/p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb&nbsp;Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi&nbsp;Zoom<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;qu\\u1ea3n l\\u00fd.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0&nbsp;\\u0103n nh\\u1eb9.<\\/span><\\/p>\\n<p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th\\u01b0\\u1edfng<\\/span><\\/p>\\n<p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch \\/&nbsp;\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: rgb(85, 85, 85);\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d857311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6a132df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"9895264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Picture1.png\",\"id\":7913,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.675}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(11711,7923,'_elementor_page_assets','a:0:{}'),(11712,7924,'_thumbnail_id','7810'),(11713,7924,'_elementor_edit_mode','builder'),(11714,7924,'_elementor_template_type','wp-post'),(11715,7924,'_elementor_version','3.15.3'),(11716,7924,'_elementor_pro_version','3.15.0'),(11717,7924,'_wp_page_template','default'),(11718,7924,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b20a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"RSVP\",\"link\":{\"url\":\"https:\\/\\/www.addevent.com\\/event\\/Kz19200440\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(11719,7924,'_elementor_page_assets','a:0:{}'),(11723,7925,'_thumbnail_id','7810'),(11724,7925,'_elementor_edit_mode','builder'),(11725,7925,'_elementor_template_type','wp-post'),(11726,7925,'_elementor_version','3.15.3'),(11727,7925,'_elementor_pro_version','3.15.0'),(11728,7925,'_wp_page_template','default'),(11729,7925,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b20a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"RSVP\",\"link\":{\"url\":\"https:\\/\\/www.addevent.com\\/event\\/Kz19200440\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(11730,7925,'_elementor_page_assets','a:0:{}'),(11731,7926,'_thumbnail_id','7810'),(11732,7926,'_elementor_edit_mode','builder'),(11733,7926,'_elementor_template_type','wp-post'),(11734,7926,'_elementor_version','3.15.3'),(11735,7926,'_elementor_pro_version','3.15.0'),(11736,7926,'_wp_page_template','default'),(11737,7926,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b20a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"RSVP\",\"link\":{\"url\":\"https:\\/\\/www.addevent.com\\/event\\/Kz19200440\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(11738,7926,'_elementor_page_assets','a:0:{}'),(11739,7927,'_thumbnail_id','7810'),(11740,7927,'_elementor_edit_mode','builder'),(11741,7927,'_elementor_template_type','wp-post'),(11742,7927,'_elementor_version','3.15.3'),(11743,7927,'_elementor_pro_version','3.15.0'),(11744,7927,'_wp_page_template','default'),(11745,7927,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b20a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"RSVP\",\"link\":{\"url\":\"https:\\/\\/www.addevent.com\\/event\\/Kz19200440\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d04240\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac96292\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07067c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11746,7927,'_elementor_page_assets','a:0:{}'),(11751,7928,'_thumbnail_id','7810'),(11752,7928,'_elementor_edit_mode','builder'),(11753,7928,'_elementor_template_type','wp-post'),(11754,7928,'_elementor_version','3.15.3'),(11755,7928,'_elementor_pro_version','3.15.0'),(11756,7928,'_wp_page_template','default'),(11757,7928,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b20a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"RSVP\",\"link\":{\"url\":\"https:\\/\\/www.addevent.com\\/event\\/Kz19200440\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d04240\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac96292\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07067c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11758,7928,'_elementor_page_assets','a:0:{}'),(11760,7929,'_thumbnail_id','7810'),(11761,7929,'_elementor_edit_mode','builder'),(11762,7929,'_elementor_template_type','wp-post'),(11763,7929,'_elementor_version','3.15.3'),(11764,7929,'_elementor_pro_version','3.15.0'),(11765,7929,'_wp_page_template','default'),(11766,7929,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b20a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"RSVP\",\"link\":{\"url\":\"https:\\/\\/www.addevent.com\\/event\\/Kz19200440\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d04240\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac96292\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07067c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11767,7929,'_elementor_page_assets','a:0:{}'),(11769,7930,'_thumbnail_id','7810'),(11770,7930,'_elementor_edit_mode','builder'),(11771,7930,'_elementor_template_type','wp-post'),(11772,7930,'_elementor_version','3.15.3'),(11773,7930,'_elementor_pro_version','3.15.0'),(11774,7930,'_wp_page_template','default'),(11775,7930,'_elementor_data','[{\"id\":\"e3fdd3d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bcdfdf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68c6df3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/11\\/Le-Meridien-Saigon.jpg\",\"id\":7815,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"146b96e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb11fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d92b81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.<\\/p><p>C\\u00f3 th\\u1ec3 b\\u1ea1n \\u0111\\u00e3 bi\\u1ebft v\\u1ec1\\u00a0Zoom l\\u00e0 gi\\u1ea3i ph\\u00e1p h\\u00e0ng \\u0111\\u1ea7u cho vi\\u1ec7c h\\u1ecdp tr\\u1ef1c tuy\\u1ebfn, nh\\u01b0ng\\u00a0Zoom c\\u00f2n c\\u00f3 nhi\\u1ec1u gi\\u1ea3i ph\\u00e1p \\u0111\\u1ec3 kh\\u00e1m ph\\u00e1.<\\/p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.<\\/p><p>N\\u1ec1n t\\u1ea3ng\\u00a0Zoom c\\u00f3 th\\u1ec3 gi\\u00fap b\\u1ea1n ho\\u1ea1t \\u0111\\u1ed9ng vi\\u1ec7c c\\u1ed9ng t\\u00e1c nh\\u00f3m th\\u00f4ng minh h\\u01a1n, th\\u1ec3 hi\\u1ec7n\\u00a0\\u00fd t\\u01b0\\u1edfng, ti\\u1ebfp c\\u1eadn kh\\u00e1ch h\\u00e0ng m\\u1edbi v\\u00e0 h\\u1ed7 tr\\u1ee3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c hi\\u1ec7n \\u0111\\u1ea1i \\u0111\\u1ec3 c\\u00e1c b\\u1ea1n c\\u00f3 th\\u1ec3 c\\u00f9ng nhau l\\u00e0m \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u vi\\u1ec7c h\\u01a1n.<\\/p><p>It\\u2019s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.<\\/p><p>\\u0110\\u00e3 \\u0111\\u1ebfn l\\u00fac doanh nghi\\u1ec7p b\\u1ea1n m\\u1edf r\\u1ed9ng quy m\\u00f4 m\\u1ed9t c\\u00e1ch\\u00a0an to\\u00e0n v\\u00e0 \\u0111\\u00e1ng\\u00a0tin c\\u1eady, \\u0111\\u1ed3ng th\\u1eddi qu\\u1ea3n l\\u00fd t\\u1ea5t c\\u1ea3 t\\u1eeb m\\u1ed9t n\\u01a1i b\\u1eb1ng\\u00a0video, gi\\u1ecdng n\\u00f3i, chia s\\u1ebb n\\u1ed9i\\u00a0dung v\\u00e0 tr\\u00f2 chuy\\u1ec7n. T\\u1ea5t c\\u1ea3 ch\\u1ea1y tr\\u00ean c\\u00e1c thi\\u1ebft b\\u1ecb\\u00a0di \\u0111\\u1ed9ng, m\\u00e1y t\\u00ednh \\u0111\\u1ec3 b\\u00e0n, \\u0111i\\u1ec7n tho\\u1ea1i v\\u00e0 h\\u1ec7 th\\u1ed1ng ph\\u00f2ng h\\u1ecdp.<\\/p><p>Learn just how powerful the Zoom solution is.<\\/p><p>H\\u00e3y c\\u00f9ng t\\u00ecm hi\\u1ec3u v\\u1ec1 nh\\u1eefng gi\\u1ea3i ph\\u00e1p\\u00a0Zoom!<\\/p><p><strong>Date:<\\/strong>\\u00a029 November 2023 (Wednesday)<br \\/><strong>Location:<\\/strong>\\u00a0Le M\\u00e9ridien Saigon<br \\/>3C \\u0110. T\\u00f4n \\u0110\\u1ee9c Th\\u1eafng, B\\u1ebfn Ngh\\u00e9, Qu\\u1eadn 1, Th\\u00e0nh ph\\u1ed1 H\\u1ed3 Ch\\u00ed Minh, Vietnam<\\/p><p><strong>Agenda \\/ N\\u1ed9i\\u00a0dung<\\/strong><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">8.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Registration and Breakfast \\/ \\u0110\\u0103ng k\\u00fd v\\u00e0 \\u0111i\\u1ec3m t\\u00e2m nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.15AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Introduction \\/ Gi\\u1edbi thi\\u1ec7u<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.20AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO Asia \\u2013 President Christopher Yap \\/ Gi\\u1edbi thi\\u1ec7u\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0t\\u1ed5ng quan ESIGO Asia \\u2013 Ch\\u1ee7\\u00a0\\u00a0 t\\u1ecbch Christopher Yap<\\/span><\\/p><p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">9.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Harmonizing Work and Life by Zoom \\/ Tr\\u00ecnh b\\u00e0y t\\u1eeb\\u00a0Zoom v\\u1ec1 gi\\u1ea3i ph\\u00e1p<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.00AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Live Zoom Experience Demo \\/ Tr\\u00ecnh di\\u1ec5n tr\\u1ea3i nghi\\u1ec7m tr\\u1ef1c ti\\u1ebfp v\\u1edbi\\u00a0Zoom<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.30AM<\\/span><\\/b><span style=\\\"color: black;\\\"> \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Overview ESIGO VN architecture and managed services \\/ T\\u1ed5ng\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0quan c\\u1ea5u tr\\u00fac ESIGO VN v\\u00e0 gi\\u1edbi thi\\u1ec7u m\\u00f4 h\\u00ecnh kinh doanh c\\u00e1c d\\u1ecbch v\\u1ee5\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0qu\\u1ea3n l\\u00fd.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">10.45AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 Showcasing and Networking \\/ Tr\\u01b0ng b\\u00e0y s\\u1ea3n ph\\u1ea9m v\\u00e0\\u00a0\\u0103n nh\\u1eb9.<\\/span><\\/p><p class=\\\"elementtoproof\\\" style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"color: black;\\\">11.30AM<\\/span><\\/b><span style=\\\"color: black;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Collection of door gifts and lucky draw \\/ Nh\\u1eadn qu\\u00e0 t\\u1eb7ng v\\u00e0 quay ph\\u1ea7n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0th\\u01b0\\u1edfng<\\/span><\\/p><p class=\\\"MsoNormal\\\"><b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">12.00PM<\\/span><\\/b><span style=\\\"mso-fareast-font-family: \'Times New Roman\'; color: black;\\\">\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0Lunch \\/\\u00a0\\u0102n tr\\u01b0a<\\/span><\\/p><p>Please RSVP soonest to secure a seat. \\/ \\u0110\\u0103ng k\\u00fd ngay \\u0111\\u1ec3 gi\\u1eef ch\\u1ed7 ng\\u1ed3i.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b20a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"RSVP\",\"link\":{\"url\":\"https:\\/\\/www.addevent.com\\/event\\/Kz19200440\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#004699\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d04240\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac96292\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07067c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">ESIGO<\\/span><\\/p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">Zoom<\\/span><\\/p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11776,7930,'_elementor_page_assets','a:0:{}'),(11778,7790,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}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:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}}'),(11780,7931,'_elementor_edit_mode','builder'),(11781,7931,'_elementor_template_type','wp-page'),(11782,7931,'_elementor_version','3.15.3'),(11783,7931,'_elementor_pro_version','3.15.0'),(11784,7931,'_wp_page_template','default'),(11785,7931,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(11786,7931,'_elementor_page_assets','a:0:{}'),(11788,7932,'_elementor_edit_mode','builder'),(11789,7932,'_elementor_template_type','wp-page'),(11790,7932,'_elementor_version','3.15.3'),(11791,7932,'_elementor_pro_version','3.15.0'),(11792,7932,'_wp_page_template','default'),(11793,7932,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(11794,7932,'_elementor_page_assets','a:0:{}'),(11796,7933,'_elementor_edit_mode','builder'),(11797,7933,'_elementor_template_type','wp-page'),(11798,7933,'_elementor_version','3.15.3'),(11799,7933,'_elementor_pro_version','3.15.0'),(11800,7933,'_wp_page_template','default'),(11801,7933,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(11802,7933,'_elementor_page_assets','a:0:{}'),(11807,7934,'_elementor_edit_mode','builder'),(11808,7934,'_elementor_template_type','wp-page'),(11809,7934,'_elementor_version','3.15.3'),(11810,7934,'_elementor_pro_version','3.15.0'),(11811,7934,'_wp_page_template','default'),(11812,7934,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(11813,7934,'_elementor_page_assets','a:0:{}'),(11815,7935,'_elementor_edit_mode','builder'),(11816,7935,'_elementor_template_type','wp-page'),(11817,7935,'_elementor_version','3.15.3'),(11818,7935,'_elementor_pro_version','3.15.0'),(11819,7935,'_wp_page_template','default'),(11820,7935,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(11821,7935,'_elementor_page_assets','a:0:{}'),(11823,7936,'_elementor_edit_mode','builder'),(11824,7936,'_elementor_template_type','wp-page'),(11825,7936,'_elementor_version','3.15.3'),(11826,7936,'_elementor_pro_version','3.15.0'),(11827,7936,'_wp_page_template','default'),(11828,7936,'_elementor_data','[{\"id\":\"96fcab2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e1d598e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88cbdb3\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"__dynamic__\":{\"post_query_query_id\":\"[elementor-tag id=\\\"230630d\\\" name=\\\"post-custom-field\\\" settings=\\\"%7B%22custom_key%22%3A%22news_and_event%22%7D\\\"]\"},\"post_query_posts_ids\":[\"7218\",\"7235\",\"7243\",\"7249\"]},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(11829,7936,'_elementor_page_assets','a:0:{}'),(11831,7390,'_elementor_controls_usage','a:3:{s:13:\"loop-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:4:{s:14:\"section_layout\";a:3:{s:11:\"template_id\";i:1;s:14:\"posts_per_page\";i:1;s:14:\"slides_to_show\";i:1;}s:13:\"section_query\";a:3:{s:18:\"post_query_include\";i:1;s:20:\"post_query_posts_ids\";i:1;s:19:\"post_query_query_id\";i:1;}s:25:\"section_carousel_settings\";a:1:{s:5:\"speed\";i:1;}s:27:\"section_navigation_settings\";a:2:{s:24:\"navigation_previous_icon\";i:1;s:20:\"navigation_next_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:21:\"_element_custom_width\";i:1;}}s:5:\"style\";a:1:{s:25:\"section_design_navigation\";a:2:{s:11:\"arrows_size\";i:1;s:17:\"arrow_hover_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}}}}}'),(11842,7938,'_elementor_edit_mode','builder'),(11843,7938,'_elementor_template_type','wp-page'),(11844,7938,'_elementor_version','3.15.3'),(11845,7938,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(11846,7938,'_wp_page_template','default'),(11847,7938,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(11848,7938,'_elementor_pro_version','3.15.0'),(11849,7939,'_elementor_edit_mode','builder'),(11850,7939,'_elementor_template_type','wp-page'),(11851,7939,'_elementor_version','3.15.3'),(11852,7939,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(11853,7939,'_wp_page_template','default'),(11854,7939,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(11855,7939,'_elementor_pro_version','3.15.0'),(11856,7940,'_elementor_edit_mode','builder'),(11857,7940,'_elementor_template_type','wp-page'),(11858,7940,'_elementor_version','3.15.3'),(11859,7940,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(11860,7940,'_wp_page_template','default'),(11861,7940,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(11862,7940,'_elementor_pro_version','3.15.0'),(11864,7941,'_elementor_edit_mode','builder'),(11865,7941,'_elementor_template_type','wp-page'),(11866,7941,'_elementor_version','3.15.3'),(11867,7941,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(11868,7941,'_wp_page_template','default'),(11869,7941,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(11870,7941,'_elementor_pro_version','3.15.0'),(11871,7942,'_elementor_edit_mode','builder'),(11872,7942,'_elementor_template_type','wp-page'),(11873,7942,'_elementor_version','3.15.3'),(11874,7942,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_post_type\":\"by_id\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(11875,7942,'_wp_page_template','default'),(11876,7942,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(11877,7942,'_elementor_pro_version','3.15.0'),(11878,7943,'_elementor_edit_mode','builder'),(11879,7943,'_elementor_template_type','wp-page'),(11880,7943,'_elementor_version','3.15.3'),(11881,7943,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(11882,7943,'_wp_page_template','default'),(11883,7943,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(11884,7943,'_elementor_pro_version','3.15.0'),(11887,7944,'_elementor_edit_mode','builder'),(11888,7944,'_elementor_template_type','wp-page'),(11889,7944,'_elementor_version','3.15.3'),(11890,7944,'_elementor_pro_version','3.15.0'),(11891,7944,'_wp_page_template','default'),(11892,7944,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<br \\/><br \\/>Service Code &amp; Description<br \\/><\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<br \\/><br \\/>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11893,7944,'_elementor_page_assets','a:0:{}'),(11895,7945,'_elementor_edit_mode','builder'),(11896,7945,'_elementor_template_type','wp-page'),(11897,7945,'_elementor_version','3.15.3'),(11898,7945,'_elementor_pro_version','3.15.0'),(11899,7945,'_wp_page_template','default'),(11900,7945,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<br \\/><br \\/>Service Code &amp; Description<br \\/><\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<br \\/><br \\/>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11901,7945,'_elementor_page_assets','a:0:{}'),(11903,7946,'_elementor_edit_mode','builder'),(11904,7946,'_elementor_template_type','wp-page'),(11905,7946,'_elementor_version','3.15.3'),(11906,7946,'_elementor_pro_version','3.15.0'),(11907,7946,'_wp_page_template','default'),(11908,7946,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">CL000651<\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">Active<o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\n<label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: rgb(102, 102, 102); display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\">\\n<span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\">Licence Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n<\\/span><\\/label>\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">Services-Based Operator (Class) Licence<o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">&nbsp;<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\">Service Code <o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">&amp; Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Internet-Based\\nVoice and Data Services<br>\\nStore-and-Retrieve (S&amp;R) Value-Added Network Services<br>\\nResale of Public switched telephone services<br>\\nResale of Public cellular mobile telephone services<br>\\nResale of Private automated branch exchange (PABX)<br>\\nResale of Public switched message services<br>\\nResale of Public switched data services<br>\\nResale of Public switched integrated services digital network (ISDN) services<br>\\nResale of Video\\/ Teleconferencing services<o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">&nbsp;<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Issue Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">29 Aug 2023<\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Business <br>\\nOperating Address \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">S(408538)<\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Agency&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">Info-communications\\nMedia Development Authority<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Expiry Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">29 Nov 2106<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Company&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">202333220W\\n\\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Remarks&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">8 UBI ROAD\\n2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p>\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n<\\/p><p class=\\\"MsoNormal\\\"><o:p>&nbsp;<\\/o:p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11909,7946,'_elementor_page_assets','a:0:{}'),(11913,7947,'_elementor_edit_mode','builder'),(11914,7947,'_elementor_template_type','wp-page'),(11915,7947,'_elementor_version','3.15.3'),(11916,7947,'_elementor_pro_version','3.15.0'),(11917,7947,'_wp_page_template','default'),(11918,7947,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">CL000651<\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">Active<o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\n<label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: rgb(102, 102, 102); display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\">\\n<span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\">Licence Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n<\\/span><\\/label>\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">Services-Based Operator (Class) Licence<o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">&nbsp;<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\">Service Code <o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">&amp; Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Internet-Based\\nVoice and Data Services<br>\\nStore-and-Retrieve (S&amp;R) Value-Added Network Services<br>\\nResale of Public switched telephone services<br>\\nResale of Public cellular mobile telephone services<br>\\nResale of Private automated branch exchange (PABX)<br>\\nResale of Public switched message services<br>\\nResale of Public switched data services<br>\\nResale of Public switched integrated services digital network (ISDN) services<br>\\nResale of Video\\/ Teleconferencing services<o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">&nbsp;<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Issue Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">29 Aug 2023<\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Business <br>\\nOperating Address \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">S(408538)<\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Agency&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">Info-communications\\nMedia Development Authority<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Expiry Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">29 Nov 2106<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Company&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">202333220W\\n\\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Remarks&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">8 UBI ROAD\\n2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p>\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n<\\/p><p class=\\\"MsoNormal\\\"><o:p>&nbsp;<\\/o:p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11919,7947,'_elementor_page_assets','a:0:{}'),(11921,7948,'_elementor_edit_mode','builder'),(11922,7948,'_elementor_template_type','wp-page'),(11923,7948,'_elementor_version','3.15.3'),(11924,7948,'_elementor_pro_version','3.15.0'),(11925,7948,'_wp_page_template','default'),(11926,7948,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">CL000651<\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">Active<o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\n<label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: rgb(102, 102, 102); display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\">\\n<span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\">Licence Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n<\\/span><\\/label>\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">Services-Based Operator (Class) Licence<o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">&nbsp;<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\">Service Code <o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">&amp; Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Internet-Based\\nVoice and Data Services<br>\\nStore-and-Retrieve (S&amp;R) Value-Added Network Services<br>\\nResale of Public switched telephone services<br>\\nResale of Public cellular mobile telephone services<br>\\nResale of Private automated branch exchange (PABX)<br>\\nResale of Public switched message services<br>\\nResale of Public switched data services<br>\\nResale of Public switched integrated services digital network (ISDN) services<br>\\nResale of Video\\/ Teleconferencing services<o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">&nbsp;<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Issue Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">29 Aug 2023<\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Business <br>\\nOperating Address \\n\\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:black\\\">S(408538)<\\/span><span style=\\\"font-family:\\n&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Agency&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">Info-communications\\nMedia Development Authority<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Expiry Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">29 Nov 2106<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Company&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">202333220W\\n\\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;\\ncolor:#333333\\\">Remarks&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\n\\n<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:black\\\">8 UBI ROAD\\n2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/span><span style=\\\"font-family:&quot;Open Sans&quot;,sans-serif;color:#333333\\\"><o:p><\\/o:p><\\/span><\\/p><p>\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n<\\/p><p class=\\\"MsoNormal\\\"><o:p>&nbsp;<\\/o:p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11927,7948,'_elementor_page_assets','a:0:{}'),(11929,7949,'_elementor_edit_mode','builder'),(11930,7949,'_elementor_template_type','wp-page'),(11931,7949,'_elementor_version','3.15.3'),(11932,7949,'_elementor_pro_version','3.15.0'),(11933,7949,'_wp_page_template','default'),(11934,7949,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p><p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: #666666; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"> <span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Name\\u00a0 \\u00a0 \\u00a0 <span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Services-Based Operator (Class) Licence<\\/span><\\/span><\\/label><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Service Code <\\/span><\\/p><p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br \\/>Operating Address \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\">\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11935,7949,'_elementor_page_assets','a:0:{}'),(11948,7951,'_elementor_edit_mode','builder'),(11949,7951,'_elementor_template_type','wp-page'),(11950,7951,'_elementor_version','3.15.3'),(11951,7951,'_elementor_pro_version','3.15.0'),(11952,7951,'_wp_page_template','default'),(11953,7951,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p><p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: #666666; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"> <span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Name\\u00a0 \\u00a0 \\u00a0 <span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Services-Based Operator (Class) Licence<\\/span><\\/span><\\/label><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Service Code <\\/span><\\/p><p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br \\/>Operating Address \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\">\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11954,7951,'_elementor_page_assets','a:0:{}'),(11955,7952,'_elementor_edit_mode','builder'),(11956,7952,'_elementor_template_type','wp-page'),(11957,7952,'_elementor_version','3.15.3'),(11958,7952,'_elementor_pro_version','3.15.0'),(11959,7952,'_wp_page_template','default'),(11960,7952,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p><p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: #666666; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"> <span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Name\\u00a0 \\u00a0 \\u00a0 <span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Services-Based Operator (Class) Licence<\\/span><\\/span><\\/label><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Service Code <\\/span><\\/p><p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br \\/>Operating Address \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/span><\\/p><p>\\u00a0<\\/p><p class=\\\"MsoNormal\\\">\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11961,7952,'_elementor_page_assets','a:0:{}'),(11962,7953,'_elementor_edit_mode','builder'),(11963,7953,'_elementor_template_type','wp-page'),(11964,7953,'_elementor_version','3.15.3'),(11965,7953,'_elementor_pro_version','3.15.0'),(11966,7953,'_wp_page_template','default'),(11967,7953,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><span style=\\\"color: #555555; font-family: Rubik, sans-serif; font-size: 24px; font-weight: bold; text-align: var(--bs-body-text-align);\\\">Service-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Services-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"><span style=\\\"color: #333333; font-family: \'Open Sans\', sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Service Code<\\/span><br><\\/label><\\/p>\\n<p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video\\/ Teleconferencing services<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11968,7953,'_elementor_page_assets','a:0:{}'),(11971,7954,'_elementor_edit_mode','builder'),(11972,7954,'_elementor_template_type','wp-page'),(11973,7954,'_elementor_version','3.15.3'),(11974,7954,'_elementor_pro_version','3.15.0'),(11975,7954,'_wp_page_template','default'),(11976,7954,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><span style=\\\"color: #555555; font-family: Rubik, sans-serif; font-size: 24px; font-weight: bold; text-align: var(--bs-body-text-align);\\\">Service-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Services-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"><span style=\\\"color: #333333; font-family: \'Open Sans\', sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Service Code<\\/span><br><\\/label><\\/p>\\n<p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video\\/ Teleconferencing services<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11977,7954,'_elementor_page_assets','a:0:{}'),(11979,7955,'_elementor_edit_mode','builder'),(11980,7955,'_elementor_template_type','wp-page'),(11981,7955,'_elementor_version','3.15.3'),(11982,7955,'_elementor_pro_version','3.15.0'),(11983,7955,'_wp_page_template','default'),(11984,7955,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><span style=\\\"color: #555555; font-family: Rubik, sans-serif; font-size: 24px; font-weight: bold; text-align: var(--bs-body-text-align);\\\">Service-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Services-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"><span style=\\\"color: #333333; font-family: \'Open Sans\', sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Service Code<\\/span><br><\\/label><\\/p>\\n<p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video\\/ Teleconferencing services<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11985,7955,'_elementor_page_assets','a:0:{}'),(11987,7956,'_elementor_edit_mode','builder'),(11988,7956,'_elementor_template_type','wp-page'),(11989,7956,'_elementor_version','3.15.3'),(11990,7956,'_elementor_pro_version','3.15.0'),(11991,7956,'_wp_page_template','default'),(11992,7956,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><span style=\\\"color: #555555; font-family: Rubik, sans-serif; font-size: 24px; font-weight: bold; text-align: var(--bs-body-text-align);\\\">Service-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Services-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"><span style=\\\"color: #333333; font-family: \'Open Sans\', sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Service Code<\\/span><br><\\/label><\\/p>\\n<p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video\\/ Teleconferencing services<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.&nbsp;<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(11993,7956,'_elementor_page_assets','a:0:{}'),(11997,7957,'_elementor_edit_mode','builder'),(11998,7957,'_elementor_template_type','wp-page'),(11999,7957,'_elementor_version','3.15.3'),(12000,7957,'_elementor_pro_version','3.15.0'),(12001,7957,'_wp_page_template','default'),(12002,7957,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><span style=\\\"color: #555555; font-family: Rubik, sans-serif; font-size: 24px; font-weight: bold; text-align: var(--bs-body-text-align);\\\">Service-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Services-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"><span style=\\\"color: #333333; font-family: \'Open Sans\', sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Service Code<\\/span><br><\\/label><\\/p>\\n<p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video\\/ Teleconferencing services<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.&nbsp;<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12003,7957,'_elementor_page_assets','a:0:{}'),(12005,7958,'_elementor_edit_mode','builder'),(12006,7958,'_elementor_template_type','wp-page'),(12007,7958,'_elementor_version','3.15.3'),(12008,7958,'_elementor_pro_version','3.15.0'),(12009,7958,'_wp_page_template','default'),(12010,7958,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #18191d; font-family: Rubik, sans-serif;\\\"><span style=\\\"font-size: 24px;\\\"><b>Service-Based Operator (Class) License<\\/b><\\/span><\\/span><\\/p><div style=\\\"font-family: \'Open Sans\', sans-serif; padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Number<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">CL000651<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Status<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Active<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Licence Name<\\/label><\\/p><p>Service Code &amp; Description<\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Services-Based Operator (Class) Licence<\\/p><p>Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/p><p>\\u00a0<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Issue Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Aug 2023<\\/p><\\/div><\\/div><div style=\\\"padding-left: 15px; padding-right: 15px; position: relative; width: 494.429px; flex-basis: 50%; max-width: 50%; font-family: \'Open Sans\', sans-serif; color: #333333;\\\"><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Business Operating Address<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">S(408538)<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Agency<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">Info-communications Media Development Authority<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Expiry Date<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">29 Nov 2106<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Company<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/p><\\/div><div style=\\\"position: relative; float: left; width: 464.429px; display: flex; margin-bottom: 6px !important;\\\"><p><label style=\\\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\\\">Remarks<\\/label><\\/p><p style=\\\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><span style=\\\"color: #555555; font-family: Rubik, sans-serif; font-size: 24px; font-weight: bold; text-align: var(--bs-body-text-align);\\\">Service-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Services-Based Operator (Class) Licence<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"><span style=\\\"color: #333333; font-family: \'Open Sans\', sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Service Code<\\/span><br><\\/label><\\/p>\\n<p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video\\/ Teleconferencing services<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&nbsp;<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p>\\n<p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.&nbsp;<\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12011,7958,'_elementor_page_assets','a:0:{}'),(12013,7959,'_elementor_edit_mode','builder'),(12014,7959,'_elementor_template_type','wp-page'),(12015,7959,'_elementor_version','3.15.3'),(12016,7959,'_elementor_pro_version','3.15.0'),(12017,7959,'_wp_page_template','default'),(12018,7959,'_elementor_data','[{\"id\":\"c6389f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b4e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a8c6d12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: #555555; font-family: Rubik, sans-serif; font-size: 24px; font-weight: bold; text-align: var(--bs-body-text-align);\\\">Service-Based Operator (Class) Licence<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Licence Number\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">CL000651<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Status\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Active<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Licence Name\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Services-Based Operator (Class) Licence<\\/span><\\/p><p style=\\\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><label style=\\\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\\\"><span style=\\\"color: #333333; font-family: \'Open Sans\', sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Service Code<\\/span><br \\/><\\/label><\\/p><p style=\\\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">&amp; Description\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Internet-Based Voice and Data Services<br \\/>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br \\/>Resale of Public switched telephone services<br \\/>Resale of Public cellular mobile telephone services<br \\/>Resale of Private automated branch exchange (PABX)<br \\/>Resale of Public switched message services<br \\/>Resale of Public switched data services<br \\/>Resale of Public switched integrated services digital network (ISDN) services<br \\/>Resale of Video\\/ Teleconferencing services<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Issue Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Aug 2023<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Business<br \\/>Operating Address \\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">S(408538)<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Agency\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">Info-communications Media Development Authority<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Expiry Date\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">29 Nov 2106<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Company\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0<\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">202333220W \\/ ESIGO (ASIA) PRIVATE LIMITED<\\/span><\\/p><p style=\\\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: \'Open Sans\',sans-serif; color: #333333;\\\">Remarks\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 <\\/span><span style=\\\"font-family: \'Open Sans\',sans-serif; color: black;\\\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14\\/11\\/2023.\\u00a0<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12019,7959,'_elementor_page_assets','a:0:{}'),(12021,7763,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(12023,7960,'_elementor_edit_mode','builder'),(12024,7960,'_elementor_template_type','wp-page'),(12025,7960,'_elementor_version','3.15.3'),(12026,7960,'_elementor_pro_version','3.15.0'),(12027,7960,'_wp_page_template','default'),(12028,7960,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p><h4>PERSONAL DATA<\\/h4><ol><li>As used in this Policy:<\\/li><\\/ol><p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p><p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p><ul><li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li><\\/ul><ol start=\\\"2\\\"><li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li><\\/ol><ol start=\\\"3\\\"><li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li><\\/ol><h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h4><ol start=\\\"4\\\"><li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li><\\/ol><ol start=\\\"5\\\"><li>We may collect and use your personal data for any or all of the following purposes:<br \\/>(a) performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<br \\/>(b) verifying your identity;<br \\/>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br \\/>(d) managing your relationship with us;<br \\/>(e) processing payment or credit transactions;<br \\/>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br \\/>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<br \\/>(h) any other purposes for which you have provided the information;<br \\/>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br \\/>(j) any other incidental business purposes related to or in connection with the<\\/li><\\/ol><ol start=\\\"6\\\"><li>We may disclose your personal data:<br \\/>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br \\/>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li><\\/ol><ol start=\\\"7\\\"><li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li><\\/ol><h4>WITHDRAWING YOUR CONSENT<\\/h4><ol start=\\\"8\\\"><li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li><\\/ol><ol start=\\\"9\\\"><li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li><\\/ol><ol start=\\\"10\\\"><li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/li><\\/ol><ol start=\\\"11\\\"><li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li><\\/ol><h2>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h2><ol start=\\\"12\\\"><li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li><\\/ol><ol start=\\\"13\\\"><li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li><\\/ol><ol start=\\\"14\\\"><li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li><\\/ol><h4>PROTECTION OF PERSONAL DATA<\\/h4><ol start=\\\"15\\\"><li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li><\\/ol><ol start=\\\"16\\\"><li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li><\\/ol><h4>ACCURACY OF PERSONAL DATA<\\/h4><ol start=\\\"17\\\"><li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li><\\/ol><h4>RETENTION OF PERSONAL DATA<\\/h4><ol start=\\\"18\\\"><li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li><\\/ol><ol start=\\\"19\\\"><li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li><\\/ol><h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h4><ol start=\\\"20\\\"><li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li><\\/ol><h4>DATA PROTECTION OFFICER<\\/h4><ol start=\\\"21\\\"><li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li><\\/ol><p>Data Protection Officer<\\/p><p>ESIGO (Asia) Pte Ltd<\\/p><p>Tel: +65 6817 1978<\\/p><h4>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h4><ol start=\\\"22\\\"><li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li><\\/ol><ol start=\\\"23\\\"><li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li><\\/ol><p>Effective date: 15 September 2023<\\/p><p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12029,7960,'_elementor_page_assets','a:0:{}'),(12031,7961,'_elementor_edit_mode','builder'),(12032,7961,'_elementor_template_type','wp-page'),(12033,7961,'_elementor_version','3.15.3'),(12034,7961,'_elementor_pro_version','3.15.0'),(12035,7961,'_wp_page_template','default'),(12036,7961,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p><h4>PERSONAL DATA<\\/h4><ol><li>As used in this Policy:<\\/li><\\/ol><p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p><p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p><ul><li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li><\\/ul><ol start=\\\"2\\\"><li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li><\\/ol><ol start=\\\"3\\\"><li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li><\\/ol><h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h4><ol start=\\\"4\\\"><li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li><\\/ol><ol start=\\\"5\\\"><li>We may collect and use your personal data for any or all of the following purposes:<br \\/>(a) performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<br \\/>(b) verifying your identity;<br \\/>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br \\/>(d) managing your relationship with us;<br \\/>(e) processing payment or credit transactions;<br \\/>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br \\/>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<br \\/>(h) any other purposes for which you have provided the information;<br \\/>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br \\/>(j) any other incidental business purposes related to or in connection with the<\\/li><\\/ol><ol start=\\\"6\\\"><li>We may disclose your personal data:<br \\/>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br \\/>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li><\\/ol><ol start=\\\"7\\\"><li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li><\\/ol><h4>WITHDRAWING YOUR CONSENT<\\/h4><ol start=\\\"8\\\"><li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li><\\/ol><ol start=\\\"9\\\"><li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li><\\/ol><ol start=\\\"10\\\"><li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/li><\\/ol><ol start=\\\"11\\\"><li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li><\\/ol><h2>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h2><ol start=\\\"12\\\"><li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li><\\/ol><ol start=\\\"13\\\"><li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li><\\/ol><ol start=\\\"14\\\"><li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li><\\/ol><h4>PROTECTION OF PERSONAL DATA<\\/h4><ol start=\\\"15\\\"><li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li><\\/ol><ol start=\\\"16\\\"><li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li><\\/ol><h4>ACCURACY OF PERSONAL DATA<\\/h4><ol start=\\\"17\\\"><li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li><\\/ol><h4>RETENTION OF PERSONAL DATA<\\/h4><ol start=\\\"18\\\"><li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li><\\/ol><ol start=\\\"19\\\"><li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li><\\/ol><h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h4><ol start=\\\"20\\\"><li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li><\\/ol><h4>DATA PROTECTION OFFICER<\\/h4><ol start=\\\"21\\\"><li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li><\\/ol><p>Data Protection Officer<\\/p><p>ESIGO (Asia) Pte Ltd<\\/p><p>Tel: +65 6817 1978<\\/p><h4>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h4><ol start=\\\"22\\\"><li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li><\\/ol><ol start=\\\"23\\\"><li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li><\\/ol><p>Effective date: 15 September 2023<\\/p><p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12037,7961,'_elementor_page_assets','a:0:{}'),(12039,7962,'_elementor_edit_mode','builder'),(12040,7962,'_elementor_template_type','wp-page'),(12041,7962,'_elementor_version','3.15.3'),(12042,7962,'_elementor_pro_version','3.15.0'),(12043,7962,'_wp_page_template','default'),(12044,7962,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p>\\n<h4>PERSONAL DATA<\\/h4>\\n<ol>\\n<li>As used in this Policy:<\\/li>\\n<\\/ol>\\n<p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p>\\n<p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p>\\n<ul>\\n<li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li>\\n<\\/ul>\\n<ol start=\\\"2\\\">\\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li>\\n<\\/ol>\\n<ol start=\\\"3\\\">\\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li>\\n<\\/ol>\\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"4\\\">\\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li>\\n<\\/ol>\\n<ol start=\\\"5\\\">\\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the<\\/li>\\n<\\/ol>\\n<ol start=\\\"6\\\">\\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li>\\n<\\/ol>\\n<ol start=\\\"7\\\">\\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li>\\n<\\/ol>\\n<h4>WITHDRAWING YOUR CONSENT<\\/h4>\\n<ol start=\\\"8\\\">\\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li>\\n<\\/ol>\\n<ol start=\\\"9\\\">\\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li>\\n<\\/ol>\\n<ol start=\\\"10\\\">\\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/li>\\n<\\/ol>\\n<ol start=\\\"11\\\">\\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li>\\n<\\/ol>\\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"12\\\">\\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li>\\n<\\/ol>\\n<ol start=\\\"13\\\">\\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li>\\n<\\/ol>\\n<ol start=\\\"14\\\">\\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li>\\n<\\/ol>\\n<h4>PROTECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"15\\\">\\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li>\\n<\\/ol>\\n<ol start=\\\"16\\\">\\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li>\\n<\\/ol>\\n<h4>ACCURACY OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"17\\\">\\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li>\\n<\\/ol>\\n<h4>RETENTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"18\\\">\\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li>\\n<\\/ol>\\n<ol start=\\\"19\\\">\\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li>\\n<\\/ol>\\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h4>\\n<ol start=\\\"20\\\">\\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li>\\n<\\/ol>\\n<h4>DATA PROTECTION OFFICER<\\/h4>\\n<ol start=\\\"21\\\">\\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li>\\n<\\/ol>\\n<p>Data Protection Officer<\\/p>\\n<p>ESIGO (Asia) Pte Ltd<\\/p>\\n<p>Tel: +65 6817 1978<\\/p>\\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h4>\\n<ol start=\\\"22\\\">\\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li>\\n<\\/ol>\\n<ol start=\\\"23\\\">\\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li>\\n<\\/ol>\\n<p>Effective date: 15 September 2023<\\/p>\\n<p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12045,7962,'_elementor_page_assets','a:0:{}'),(12047,7178,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(12049,7963,'_edit_lock','1700209903:1'),(12050,7963,'_edit_last','1'),(12051,7963,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(12052,7963,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(12053,7963,'_elementor_edit_mode','builder'),(12054,7963,'_elementor_template_type','wp-page'),(12055,7963,'_elementor_version','3.15.3'),(12056,7963,'_elementor_pro_version','3.15.0'),(12057,7963,'_wp_page_template','default'),(12058,7963,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">General<\\/strong><\\/p><ol><li>We thank you for visiting\\u00a0<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>\\u00a0(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li><\\/ol><p><strong>Proprietary Rights<\\/strong><\\/p><ol start=\\\"4\\\"><li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li><\\/ol><p><strong>Restrictions on Use<\\/strong><\\/p><ol start=\\\"5\\\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.\\u00a0<\\/li><\\/ol><p>6A. If you distribute or otherwise share the Contents, you must:<br \\/>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br \\/>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br \\/>ii. a copyright notice; and<br \\/>iii. a notice that refers to these Terms of Use; and<br \\/>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.\\u00a0<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p><ol start=\\\"7\\\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.\\u00a0<\\/li><\\/ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.\\u00a0<\\/p><p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p><ol start=\\\"10\\\"><li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br \\/>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br \\/>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) any loss of access to or use of this Site, howsoever caused;<br \\/>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br \\/>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br \\/>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li><\\/ol><p><strong>Indemnity<\\/strong><\\/p><ol start=\\\"12\\\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br \\/>(c) your breach of any of these Terms of Use.<\\/li><\\/ol><p><strong>No Representations<\\/strong><\\/p><ol start=\\\"13\\\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br \\/>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br \\/>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li><li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li><\\/ol><p><strong>Availability and Right of Access<\\/strong><\\/p><ol start=\\\"17\\\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li><li>You agree that you will not:<br \\/>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br \\/>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br \\/>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li><\\/ol><p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p><ol start=\\\"21\\\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li><\\/ol><p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p><ol start=\\\"23\\\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li><\\/ol><p><strong>Permission for Use<\\/strong><\\/p><ol start=\\\"29\\\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li><\\/ol><p><strong>Governing Law<\\/strong><\\/p><ol start=\\\"31\\\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12059,7963,'_elementor_page_assets','a:0:{}'),(12062,7964,'_elementor_edit_mode','builder'),(12063,7964,'_elementor_template_type','wp-page'),(12064,7964,'_elementor_version','3.15.3'),(12065,7964,'_elementor_pro_version','3.15.0'),(12066,7964,'_wp_page_template','default'),(12067,7964,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p>\\n<h4>PERSONAL DATA<\\/h4>\\n<ol>\\n<li>As used in this Policy:<\\/li>\\n<\\/ol>\\n<p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p>\\n<p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p>\\n<ul>\\n<li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li>\\n<\\/ul>\\n<ol start=\\\"2\\\">\\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li>\\n<\\/ol>\\n<ol start=\\\"3\\\">\\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li>\\n<\\/ol>\\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"4\\\">\\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li>\\n<\\/ol>\\n<ol start=\\\"5\\\">\\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the<\\/li>\\n<\\/ol>\\n<ol start=\\\"6\\\">\\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li>\\n<\\/ol>\\n<ol start=\\\"7\\\">\\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li>\\n<\\/ol>\\n<h4>WITHDRAWING YOUR CONSENT<\\/h4>\\n<ol start=\\\"8\\\">\\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li>\\n<\\/ol>\\n<ol start=\\\"9\\\">\\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li>\\n<\\/ol>\\n<ol start=\\\"10\\\">\\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/li>\\n<\\/ol>\\n<ol start=\\\"11\\\">\\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li>\\n<\\/ol>\\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"12\\\">\\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li>\\n<\\/ol>\\n<ol start=\\\"13\\\">\\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li>\\n<\\/ol>\\n<ol start=\\\"14\\\">\\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li>\\n<\\/ol>\\n<h4>PROTECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"15\\\">\\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li>\\n<\\/ol>\\n<ol start=\\\"16\\\">\\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li>\\n<\\/ol>\\n<h4>ACCURACY OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"17\\\">\\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li>\\n<\\/ol>\\n<h4>RETENTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"18\\\">\\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li>\\n<\\/ol>\\n<ol start=\\\"19\\\">\\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li>\\n<\\/ol>\\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h4>\\n<ol start=\\\"20\\\">\\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li>\\n<\\/ol>\\n<h4>DATA PROTECTION OFFICER<\\/h4>\\n<ol start=\\\"21\\\">\\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li>\\n<\\/ol>\\n<p>Data Protection Officer<\\/p>\\n<p>ESIGO (Asia) Pte Ltd<\\/p>\\n<p>Tel: +65 6817 1978<\\/p>\\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h4>\\n<ol start=\\\"22\\\">\\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li>\\n<\\/ol>\\n<ol start=\\\"23\\\">\\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li>\\n<\\/ol>\\n<p>Effective date: 15 September 2023<\\/p>\\n<p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12068,7964,'_elementor_page_assets','a:0:{}'),(12069,7964,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(12071,7965,'_elementor_edit_mode','builder'),(12072,7965,'_elementor_template_type','wp-page'),(12073,7965,'_elementor_version','3.15.3'),(12074,7965,'_elementor_pro_version','3.15.0'),(12075,7965,'_wp_page_template','default'),(12076,7965,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p>\\n<h4>PERSONAL DATA<\\/h4>\\n<ol>\\n<li>As used in this Policy:<\\/li>\\n<\\/ol>\\n<p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p>\\n<p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p>\\n<ul>\\n<li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li>\\n<\\/ul>\\n<ol start=\\\"2\\\">\\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li>\\n<\\/ol>\\n<ol start=\\\"3\\\">\\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li>\\n<\\/ol>\\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"4\\\">\\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li>\\n<\\/ol>\\n<ol start=\\\"5\\\">\\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the<\\/li>\\n<\\/ol>\\n<ol start=\\\"6\\\">\\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li>\\n<\\/ol>\\n<ol start=\\\"7\\\">\\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li>\\n<\\/ol>\\n<h4>WITHDRAWING YOUR CONSENT<\\/h4>\\n<ol start=\\\"8\\\">\\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li>\\n<\\/ol>\\n<ol start=\\\"9\\\">\\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li>\\n<\\/ol>\\n<ol start=\\\"10\\\">\\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/li>\\n<\\/ol>\\n<ol start=\\\"11\\\">\\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li>\\n<\\/ol>\\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"12\\\">\\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li>\\n<\\/ol>\\n<ol start=\\\"13\\\">\\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li>\\n<\\/ol>\\n<ol start=\\\"14\\\">\\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li>\\n<\\/ol>\\n<h4>PROTECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"15\\\">\\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li>\\n<\\/ol>\\n<ol start=\\\"16\\\">\\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li>\\n<\\/ol>\\n<h4>ACCURACY OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"17\\\">\\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li>\\n<\\/ol>\\n<h4>RETENTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"18\\\">\\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li>\\n<\\/ol>\\n<ol start=\\\"19\\\">\\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li>\\n<\\/ol>\\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h4>\\n<ol start=\\\"20\\\">\\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li>\\n<\\/ol>\\n<h4>DATA PROTECTION OFFICER<\\/h4>\\n<ol start=\\\"21\\\">\\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li>\\n<\\/ol>\\n<p>Data Protection Officer<\\/p>\\n<p>ESIGO (Asia) Pte Ltd<\\/p>\\n<p>Tel: +65 6817 1978<\\/p>\\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h4>\\n<ol start=\\\"22\\\">\\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li>\\n<\\/ol>\\n<ol start=\\\"23\\\">\\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li>\\n<\\/ol>\\n<p>Effective date: 15 September 2023<\\/p>\\n<p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12077,7965,'_elementor_page_assets','a:0:{}'),(12078,7965,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(12079,7966,'_elementor_edit_mode','builder'),(12080,7966,'_elementor_template_type','wp-page'),(12081,7966,'_elementor_version','3.15.3'),(12082,7966,'_elementor_pro_version','3.15.0'),(12083,7966,'_wp_page_template','default'),(12084,7966,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This privacy policy (\\u201cPolicy\\u201d) sets out the basis which ESIGO (Asia) Pte Ltd (\\u201cwe\\u201d, \\u201cus\\u201d, or \\u201cour\\u201d) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (\\u201cPDPA\\u201d). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.<\\/p>\\n<h4>PERSONAL DATA<\\/h4>\\n<ol>\\n<li>As used in this Policy:<\\/li>\\n<\\/ol>\\n<p>\\u201ccustomer\\u201d means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and<\\/p>\\n<p>\\u201cpersonal data\\u201d means data, whether true or not, about a customer who can be identified:<\\/p>\\n<ul>\\n<li>from that data; or (b) from that data and other information to which we have or are likely to have<\\/li>\\n<\\/ul>\\n<ol start=\\\"2\\\">\\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account<\\/li>\\n<\\/ol>\\n<ol start=\\\"3\\\">\\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).<\\/li>\\n<\\/ol>\\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"4\\\">\\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your \\u201cauthorised representative\\u201d) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).<\\/li>\\n<\\/ol>\\n<ol start=\\\"5\\\">\\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and\\/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and\\/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and\\/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the<\\/li>\\n<\\/ol>\\n<ol start=\\\"6\\\">\\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for<\\/li>\\n<\\/ol>\\n<ol start=\\\"7\\\">\\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).<\\/li>\\n<\\/ol>\\n<h4>WITHDRAWING YOUR CONSENT<\\/h4>\\n<ol start=\\\"8\\\">\\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and\\/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.<\\/li>\\n<\\/ol>\\n<ol start=\\\"9\\\">\\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.<\\/li>\\n<\\/ol>\\n<ol start=\\\"10\\\">\\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.<\\/li>\\n<\\/ol>\\n<ol start=\\\"11\\\">\\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable<\\/li>\\n<\\/ol>\\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"12\\\">\\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided<\\/li>\\n<\\/ol>\\n<ol start=\\\"13\\\">\\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.<\\/li>\\n<\\/ol>\\n<ol start=\\\"14\\\">\\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).<\\/li>\\n<\\/ol>\\n<h4>PROTECTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"15\\\">\\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know<\\/li>\\n<\\/ol>\\n<ol start=\\\"16\\\">\\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.<\\/li>\\n<\\/ol>\\n<h4>ACCURACY OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"17\\\">\\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided<\\/li>\\n<\\/ol>\\n<h4>RETENTION OF PERSONAL DATA<\\/h4>\\n<ol start=\\\"18\\\">\\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable<\\/li>\\n<\\/ol>\\n<ol start=\\\"19\\\">\\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business<\\/li>\\n<\\/ol>\\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE<\\/h4>\\n<ol start=\\\"20\\\">\\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.<\\/li>\\n<\\/ol>\\n<h4>DATA PROTECTION OFFICER<\\/h4>\\n<ol start=\\\"21\\\">\\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:<\\/li>\\n<\\/ol>\\n<p>Data Protection Officer<\\/p>\\n<p>ESIGO (Asia) Pte Ltd<\\/p>\\n<p>Tel: +65 6817 1978<\\/p>\\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY<\\/h4>\\n<ol start=\\\"22\\\">\\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by<\\/li>\\n<\\/ol>\\n<ol start=\\\"23\\\">\\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.<\\/li>\\n<\\/ol>\\n<p>Effective date: 15 September 2023<\\/p>\\n<p>Last updated: 15 September 2023<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12085,7966,'_elementor_page_assets','a:0:{}'),(12086,7966,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(12087,7967,'_elementor_edit_mode','builder'),(12088,7967,'_elementor_template_type','wp-page'),(12089,7967,'_elementor_version','3.15.3'),(12090,7967,'_elementor_pro_version','3.15.0'),(12091,7967,'_wp_page_template','default'),(12092,7967,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Terms of Use<\\/strong><\\/p><p><strong>General<\\/strong><\\/p><ol><li>We thank you for visiting\\u00a0<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>\\u00a0(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li><\\/ol><p><strong>Proprietary Rights<\\/strong><\\/p><ol start=\\\"4\\\"><li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li><\\/ol><p><strong>Restrictions on Use<\\/strong><\\/p><ol start=\\\"5\\\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.\\u00a0<\\/li><\\/ol><p>6A. If you distribute or otherwise share the Contents, you must:<br \\/>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br \\/>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br \\/>ii. a copyright notice; and<br \\/>iii. a notice that refers to these Terms of Use; and<br \\/>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.\\u00a0<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p><ol start=\\\"7\\\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.\\u00a0<\\/li><\\/ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.\\u00a0<\\/p><p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p><ol start=\\\"10\\\"><li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br \\/>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br \\/>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) any loss of access to or use of this Site, howsoever caused;<br \\/>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br \\/>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br \\/>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li><\\/ol><p><strong>Indemnity<\\/strong><\\/p><ol start=\\\"12\\\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br \\/>(c) your breach of any of these Terms of Use.<\\/li><\\/ol><p><strong>No Representations<\\/strong><\\/p><ol start=\\\"13\\\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br \\/>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br \\/>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li><li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li><\\/ol><p><strong>Availability and Right of Access<\\/strong><\\/p><ol start=\\\"17\\\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li><li>You agree that you will not:<br \\/>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br \\/>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br \\/>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li><\\/ol><p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p><ol start=\\\"21\\\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li><\\/ol><p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p><ol start=\\\"23\\\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li><\\/ol><p><strong>Permission for Use<\\/strong><\\/p><ol start=\\\"29\\\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li><\\/ol><p><strong>Governing Law<\\/strong><\\/p><ol start=\\\"31\\\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li><\\/ol><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12093,7967,'_elementor_page_assets','a:0:{}'),(12094,7967,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(12095,7968,'_wp_page_template','elementor_theme'),(12096,7968,'_elementor_edit_mode','builder'),(12097,7968,'_elementor_template_type','wp-post'),(12098,7968,'_elementor_version','3.15.3'),(12099,7968,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business Licence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-licence\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12100,7968,'_elementor_page_assets','a:0:{}'),(12101,7968,'_elementor_pro_version','3.15.0'),(12103,7969,'_wp_page_template','elementor_theme'),(12104,7969,'_elementor_edit_mode','builder'),(12105,7969,'_elementor_template_type','wp-post'),(12106,7969,'_elementor_version','3.15.3'),(12107,7969,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business Licence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-licence\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12108,7969,'_elementor_page_assets','a:0:{}'),(12109,7969,'_elementor_pro_version','3.15.0'),(12111,7970,'_wp_page_template','elementor_theme'),(12112,7970,'_elementor_edit_mode','builder'),(12113,7970,'_elementor_template_type','wp-post'),(12114,7970,'_elementor_version','3.15.3'),(12115,7970,'_elementor_data','[{\"id\":\"590edb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/06\\/Map_1.png\",\"id\":7710,\"size\":\"\",\"alt\":\"maap-footer\",\"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},\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_color\":\"#999999\"},\"elements\":[{\"id\":\"3dbadaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a8e65\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footer-section\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"bd3a6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e778f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/ESi-Go.png\",\"id\":6647,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"157\",\"height\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c4dd1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"cs_text_widget\\\"><p>ESIGO (Asia) Pte Ltd<\\/p><p>8 Ubi Road 2, Zervex<\\/p><p>#06-31<\\/p><p>Singapore 408538<\\/p><\\/div>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec899fd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a02ab9c\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#53121200\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#454A53\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_laptop\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"hover_primary_color\":\"#E9A132\",\"hover_border_color\":\"#00000000\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4b3d546\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_inline_size_tablet\":50,\"css_classes\":\"sorex-footer-list\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b80fbac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_laptop\":\"initial\",\"_element_custom_width_laptop\":{\"unit\":\"px\",\"size\":278.233},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9e932\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ec15848\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10ec91d\",\"text\":\"News and Events\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/news-and-events\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Managed Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6bfa4a5\"},{\"_id\":\"a82b903\",\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0dd060\"},{\"_id\":\"a135d26\",\"text\":\"Business Licence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/business-licence\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"34a48fe\",\"text\":\"Terms of Use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/terms-of-use\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#F3F3F3\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"400\",\"text_color\":\"#FFFFFF\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"link_click\":\"inline\",\"icon_align\":\"left\",\"_element_width\":\"initial\",\"_css_classes\":\"footer-list-style\",\"icon_typography_text_transform\":\"uppercase\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_typography_font_family\":\"Rubik\",\"text_color_hover\":\"#164B99\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74cbdec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_laptop\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"footer-newsletter-form footer-newsletter-form--v2\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb9720b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5f7d0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Subscribe our Newsletter and get every update informations!<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0b53dd\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mc4wp_form id=2172]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b367847\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"layout\":\"full_width\",\"css_classes\":\"copyright-footer\"},\"elements\":[{\"id\":\"5f5614e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#595252\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a09858c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Copyright \\u00a9 2023 <a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">ESIGO (Asia) Pte Ltd<\\/a><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\/\\\">.<\\/a> All rights reserved.<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12116,7970,'_elementor_page_assets','a:0:{}'),(12117,7970,'_elementor_pro_version','3.15.0'),(12119,6626,'_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;s:5:\"align\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:10:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;s:12:\"icon_padding\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:18:\"hover_border_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:4;s:11:\"css_classes\";i:2;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a: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:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:2;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:1;s:10:\"link_click\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:9:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:10:\"text_color\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_line_height\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;s:30:\"icon_typography_text_transform\";i:1;s:27:\"icon_typography_font_family\";i:1;s:16:\"text_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:12:\"_css_classes\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:2;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:2;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:11:\"css_classes\";i:2;s:6:\"margin\";i:1;}}}}}'),(12122,7971,'_elementor_edit_mode','builder'),(12123,7971,'_elementor_template_type','wp-page'),(12124,7971,'_elementor_version','3.15.3'),(12125,7971,'_elementor_pro_version','3.15.0'),(12126,7971,'_wp_page_template','default'),(12127,7971,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Terms of Use<\\/strong><\\/p><p><strong>General<\\/strong><\\/p><ol><li>We thank you for visiting\\u00a0<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>\\u00a0(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li><\\/ol><p><strong>Proprietary Rights<\\/strong><\\/p><ol start=\\\"4\\\"><li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li><\\/ol><p><strong>Restrictions on Use<\\/strong><\\/p><ol start=\\\"5\\\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.\\u00a0<\\/li><\\/ol><p>6A. If you distribute or otherwise share the Contents, you must:<br \\/>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br \\/>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br \\/>ii. a copyright notice; and<br \\/>iii. a notice that refers to these Terms of Use; and<br \\/>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.\\u00a0<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p><ol start=\\\"7\\\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.\\u00a0<\\/li><\\/ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.\\u00a0<\\/p><p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p><ol start=\\\"10\\\"><li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br \\/>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br \\/>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) any loss of access to or use of this Site, howsoever caused;<br \\/>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br \\/>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br \\/>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li><\\/ol><p><strong>Indemnity<\\/strong><\\/p><ol start=\\\"12\\\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br \\/>(c) your breach of any of these Terms of Use.<\\/li><\\/ol><p><strong>No Representations<\\/strong><\\/p><ol start=\\\"13\\\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br \\/>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br \\/>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li><li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li><\\/ol><p><strong>Availability and Right of Access<\\/strong><\\/p><ol start=\\\"17\\\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li><li>You agree that you will not:<br \\/>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br \\/>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br \\/>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li><\\/ol><p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p><ol start=\\\"21\\\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li><\\/ol><p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p><ol start=\\\"23\\\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li><\\/ol><p><strong>Permission for Use<\\/strong><\\/p><ol start=\\\"29\\\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li><\\/ol><p><strong>Governing Law<\\/strong><\\/p><ol start=\\\"31\\\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li><\\/ol><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpsl_postmeta` VALUES (12128,7971,'_elementor_page_assets','a:0:{}'),(12130,7972,'_elementor_edit_mode','builder'),(12131,7972,'_elementor_template_type','wp-page'),(12132,7972,'_elementor_version','3.15.3'),(12133,7972,'_elementor_pro_version','3.15.0'),(12134,7972,'_wp_page_template','default'),(12135,7972,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Terms of Use<\\/strong><\\/p><p><strong>General<\\/strong><\\/p><ol><li>We thank you for visiting\\u00a0<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>\\u00a0(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li><\\/ol><p><strong>Proprietary Rights<\\/strong><\\/p><ol start=\\\"4\\\"><li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li><\\/ol><p><strong>Restrictions on Use<\\/strong><\\/p><ol start=\\\"5\\\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.\\u00a0<\\/li><\\/ol><p>6A. If you distribute or otherwise share the Contents, you must:<br \\/>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br \\/>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br \\/>ii. a copyright notice; and<br \\/>iii. a notice that refers to these Terms of Use; and<br \\/>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.\\u00a0<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p><ol start=\\\"7\\\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.\\u00a0<\\/li><\\/ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.\\u00a0<\\/p><p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p><ol start=\\\"10\\\"><li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br \\/>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br \\/>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) any loss of access to or use of this Site, howsoever caused;<br \\/>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br \\/>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br \\/>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li><\\/ol><p><strong>Indemnity<\\/strong><\\/p><ol start=\\\"12\\\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br \\/>(c) your breach of any of these Terms of Use.<\\/li><\\/ol><p><strong>No Representations<\\/strong><\\/p><ol start=\\\"13\\\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br \\/>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br \\/>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li><li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li><\\/ol><p><strong>Availability and Right of Access<\\/strong><\\/p><ol start=\\\"17\\\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li><li>You agree that you will not:<br \\/>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br \\/>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br \\/>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li><\\/ol><p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p><ol start=\\\"21\\\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li><\\/ol><p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p><ol start=\\\"23\\\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li><\\/ol><p><strong>Permission for Use<\\/strong><\\/p><ol start=\\\"29\\\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li><\\/ol><p><strong>Governing Law<\\/strong><\\/p><ol start=\\\"31\\\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li><\\/ol><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12136,7972,'_elementor_page_assets','a:0:{}'),(12138,7973,'_elementor_edit_mode','builder'),(12139,7973,'_elementor_template_type','wp-page'),(12140,7973,'_elementor_version','3.15.3'),(12141,7973,'_elementor_pro_version','3.15.0'),(12142,7973,'_wp_page_template','default'),(12143,7973,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">General<\\/strong><br><\\/p>\\n<ol>\\n<li>We thank you for visiting&nbsp;<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>&nbsp;(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li>\\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li>\\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Proprietary Rights<\\/strong><\\/p>\\n<ol start=\\\"4\\\">\\n<li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li>\\n<\\/ol>\\n<p><strong>Restrictions on Use<\\/strong><\\/p>\\n<ol start=\\\"5\\\">\\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li>\\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p>\\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p>\\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p>\\n<ol start=\\\"7\\\">\\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li>\\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li>\\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p>\\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;<\\/p>\\n<p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p>\\n<ol start=\\\"10\\\">\\n<li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li>\\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li>\\n<\\/ol>\\n<p><strong>Indemnity<\\/strong><\\/p>\\n<ol start=\\\"12\\\">\\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br>(c) your breach of any of these Terms of Use.<\\/li>\\n<\\/ol>\\n<p><strong>No Representations<\\/strong><\\/p>\\n<ol start=\\\"13\\\">\\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li>\\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li>\\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li>\\n<li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Availability and Right of Access<\\/strong><\\/p>\\n<ol start=\\\"17\\\">\\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li>\\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li>\\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li>\\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"21\\\">\\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li>\\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"23\\\">\\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li>\\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li>\\n<\\/ol>\\n<p><strong>Permission for Use<\\/strong><\\/p>\\n<ol start=\\\"29\\\">\\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li>\\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li>\\n<\\/ol>\\n<p><strong>Governing Law<\\/strong><\\/p>\\n<ol start=\\\"31\\\">\\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li>\\n<\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12144,7973,'_elementor_page_assets','a:0:{}'),(12148,7974,'_elementor_edit_mode','builder'),(12149,7974,'_elementor_template_type','wp-page'),(12150,7974,'_elementor_version','3.15.3'),(12151,7974,'_elementor_pro_version','3.15.0'),(12152,7974,'_wp_page_template','default'),(12153,7974,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">General<\\/strong><br><\\/p>\\n<ol>\\n<li>We thank you for visiting&nbsp;<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>&nbsp;(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li>\\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li>\\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Proprietary Rights<\\/strong><\\/p>\\n<ol start=\\\"4\\\">\\n<li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li>\\n<\\/ol>\\n<p><strong>Restrictions on Use<\\/strong><\\/p>\\n<ol start=\\\"5\\\">\\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li>\\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p>\\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p>\\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p>\\n<ol start=\\\"7\\\">\\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li>\\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li>\\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p>\\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;<\\/p>\\n<p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p>\\n<ol start=\\\"10\\\">\\n<li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li>\\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li>\\n<\\/ol>\\n<p><strong>Indemnity<\\/strong><\\/p>\\n<ol start=\\\"12\\\">\\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br>(c) your breach of any of these Terms of Use.<\\/li>\\n<\\/ol>\\n<p><strong>No Representations<\\/strong><\\/p>\\n<ol start=\\\"13\\\">\\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li>\\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li>\\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li>\\n<li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Availability and Right of Access<\\/strong><\\/p>\\n<ol start=\\\"17\\\">\\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li>\\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li>\\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li>\\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"21\\\">\\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li>\\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"23\\\">\\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li>\\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li>\\n<\\/ol>\\n<p><strong>Permission for Use<\\/strong><\\/p>\\n<ol start=\\\"29\\\">\\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li>\\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li>\\n<\\/ol>\\n<p><strong>Governing Law<\\/strong><\\/p>\\n<ol start=\\\"31\\\">\\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li>\\n<\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12154,7974,'_elementor_page_assets','a:0:{}'),(12156,7975,'_elementor_edit_mode','builder'),(12157,7975,'_elementor_template_type','wp-page'),(12158,7975,'_elementor_version','3.15.3'),(12159,7975,'_elementor_pro_version','3.15.0'),(12160,7975,'_wp_page_template','default'),(12161,7975,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">General<\\/strong><br><\\/p>\\n<ol>\\n<li>We thank you for visiting&nbsp;<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>&nbsp;(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li>\\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li>\\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Proprietary Rights<\\/strong><\\/p>\\n<ol start=\\\"4\\\">\\n<li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li>\\n<\\/ol>\\n<p><strong>Restrictions on Use<\\/strong><\\/p>\\n<ol start=\\\"5\\\">\\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li>\\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p>\\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p>\\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p>\\n<ol start=\\\"7\\\">\\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li>\\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li>\\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p>\\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;<\\/p>\\n<p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p>\\n<ol start=\\\"10\\\">\\n<li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li>\\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li>\\n<\\/ol>\\n<p><strong>Indemnity<\\/strong><\\/p>\\n<ol start=\\\"12\\\">\\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br>(c) your breach of any of these Terms of Use.<\\/li>\\n<\\/ol>\\n<p><strong>No Representations<\\/strong><\\/p>\\n<ol start=\\\"13\\\">\\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li>\\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li>\\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li>\\n<li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Availability and Right of Access<\\/strong><\\/p>\\n<ol start=\\\"17\\\">\\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li>\\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li>\\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li>\\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"21\\\">\\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li>\\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"23\\\">\\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li>\\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li>\\n<\\/ol>\\n<p><strong>Permission for Use<\\/strong><\\/p>\\n<ol start=\\\"29\\\">\\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li>\\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li>\\n<\\/ol>\\n<p><strong>Governing Law<\\/strong><\\/p>\\n<ol start=\\\"31\\\">\\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li>\\n<\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12162,7975,'_elementor_page_assets','a:0:{}'),(12164,7976,'_elementor_edit_mode','builder'),(12165,7976,'_elementor_template_type','wp-page'),(12166,7976,'_elementor_version','3.15.3'),(12167,7976,'_elementor_pro_version','3.15.0'),(12168,7976,'_wp_page_template','default'),(12169,7976,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">General<\\/strong><br><\\/p>\\n<ol>\\n<li>We thank you for visiting&nbsp;<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>&nbsp;(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li>\\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li>\\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Proprietary Rights<\\/strong><\\/p>\\n<ol start=\\\"4\\\">\\n<li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li>\\n<\\/ol>\\n<p><strong>Restrictions on Use<\\/strong><\\/p>\\n<ol start=\\\"5\\\">\\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li>\\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p>\\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p>\\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p>\\n<ol start=\\\"7\\\">\\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li>\\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li>\\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p>\\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;<\\/p>\\n<p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p>\\n<ol start=\\\"10\\\">\\n<li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li>\\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li>\\n<\\/ol>\\n<p><strong>Indemnity<\\/strong><\\/p>\\n<ol start=\\\"12\\\">\\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br>(c) your breach of any of these Terms of Use.<\\/li>\\n<\\/ol>\\n<p><strong>No Representations<\\/strong><\\/p>\\n<ol start=\\\"13\\\">\\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li>\\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li>\\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li>\\n<li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Availability and Right of Access<\\/strong><\\/p>\\n<ol start=\\\"17\\\">\\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li>\\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li>\\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li>\\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"21\\\">\\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li>\\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"23\\\">\\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li>\\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li>\\n<\\/ol>\\n<p><strong>Permission for Use<\\/strong><\\/p>\\n<ol start=\\\"29\\\">\\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li>\\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li>\\n<\\/ol>\\n<p><strong>Governing Law<\\/strong><\\/p>\\n<ol start=\\\"31\\\">\\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li>\\n<\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12170,7976,'_elementor_page_assets','a:0:{}'),(12173,7977,'_elementor_edit_mode','builder'),(12174,7977,'_elementor_template_type','wp-page'),(12175,7977,'_elementor_version','3.15.3'),(12176,7977,'_elementor_pro_version','3.15.0'),(12177,7977,'_wp_page_template','default'),(12178,7977,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">General<\\/strong><br><\\/p>\\n<ol>\\n<li>We thank you for visiting&nbsp;<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>&nbsp;(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li>\\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li>\\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Proprietary Rights<\\/strong><\\/p>\\n<ol start=\\\"4\\\">\\n<li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li>\\n<\\/ol>\\n<p><strong>Restrictions on Use<\\/strong><\\/p>\\n<ol start=\\\"5\\\">\\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li>\\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p>\\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p>\\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p>\\n<ol start=\\\"7\\\">\\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li>\\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li>\\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p>\\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;<\\/p>\\n<p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p>\\n<ol start=\\\"10\\\">\\n<li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li>\\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li>\\n<\\/ol>\\n<p><strong>Indemnity<\\/strong><\\/p>\\n<ol start=\\\"12\\\">\\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br>(c) your breach of any of these Terms of Use.<\\/li>\\n<\\/ol>\\n<p><strong>No Representations<\\/strong><\\/p>\\n<ol start=\\\"13\\\">\\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li>\\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li>\\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li>\\n<li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Availability and Right of Access<\\/strong><\\/p>\\n<ol start=\\\"17\\\">\\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li>\\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li>\\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li>\\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"21\\\">\\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li>\\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"23\\\">\\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li>\\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li>\\n<\\/ol>\\n<p><strong>Permission for Use<\\/strong><\\/p>\\n<ol start=\\\"29\\\">\\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li>\\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li>\\n<\\/ol>\\n<p><strong>Governing Law<\\/strong><\\/p>\\n<ol start=\\\"31\\\">\\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li>\\n<\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12179,7977,'_elementor_page_assets','a:0:{}'),(12180,7978,'_elementor_edit_mode','builder'),(12181,7978,'_elementor_template_type','wp-page'),(12182,7978,'_elementor_version','3.15.3'),(12183,7978,'_elementor_pro_version','3.15.0'),(12184,7978,'_wp_page_template','default'),(12185,7978,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">General<\\/strong><br><\\/p>\\n<ol>\\n<li>We thank you for visiting&nbsp;<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>&nbsp;(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li>\\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li>\\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Proprietary Rights<\\/strong><\\/p>\\n<ol start=\\\"4\\\">\\n<li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li>\\n<\\/ol>\\n<p><strong>Restrictions on Use<\\/strong><\\/p>\\n<ol start=\\\"5\\\">\\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li>\\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p>\\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p>\\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p>\\n<ol start=\\\"7\\\">\\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li>\\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li>\\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;<\\/li>\\n<\\/ol>\\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p>\\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;<\\/p>\\n<p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p>\\n<ol start=\\\"10\\\">\\n<li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li>\\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li>\\n<\\/ol>\\n<p><strong>Indemnity<\\/strong><\\/p>\\n<ol start=\\\"12\\\">\\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br>(c) your breach of any of these Terms of Use.<\\/li>\\n<\\/ol>\\n<p><strong>No Representations<\\/strong><\\/p>\\n<ol start=\\\"13\\\">\\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li>\\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li>\\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li>\\n<li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li>\\n<\\/ol>\\n<p><strong>Availability and Right of Access<\\/strong><\\/p>\\n<ol start=\\\"17\\\">\\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li>\\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li>\\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li>\\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"21\\\">\\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li>\\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li>\\n<\\/ol>\\n<p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p>\\n<ol start=\\\"23\\\">\\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li>\\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li>\\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li>\\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li>\\n<\\/ol>\\n<p><strong>Permission for Use<\\/strong><\\/p>\\n<ol start=\\\"29\\\">\\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li>\\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li>\\n<\\/ol>\\n<p><strong>Governing Law<\\/strong><\\/p>\\n<ol start=\\\"31\\\">\\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li>\\n<\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12186,7978,'_elementor_page_assets','a:0:{}'),(12187,7979,'_elementor_edit_mode','builder'),(12188,7979,'_elementor_template_type','wp-page'),(12189,7979,'_elementor_version','3.15.3'),(12190,7979,'_elementor_pro_version','3.15.0'),(12191,7979,'_wp_page_template','default'),(12192,7979,'_elementor_data','[{\"id\":\"e9ccf79\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab356e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c6ad0b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\\\">General<\\/strong><\\/p><ol><li>We thank you for visiting\\u00a0<u><a href=\\\"https:\\/\\/esigo.futuremediatrix.com\\\">www.esigo.co<\\/a><\\/u>\\u00a0(\\u201cthis Site\\\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\\\"ESIGO\\\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (\\u201cTerms of Use\\u201d). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.<\\/li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.<\\/li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \\\"Terms of Use\\\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.<\\/li><\\/ol><p><strong>Proprietary Rights<\\/strong><\\/p><ol start=\\\"4\\\"><li>All materials contained in this Site (\\u201cthe Contents\\\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and\\/or other intellectual property laws. All titles, rights and\\/or interests in the Contents are owned by, licensed to or controlled by ESIGO.<\\/li><\\/ol><p><strong>Restrictions on Use<\\/strong><\\/p><ol start=\\\"5\\\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.<\\/li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and\\/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.\\u00a0<\\/li><\\/ol><p>6A. If you distribute or otherwise share the Contents, you must:<br \\/>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br \\/>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br \\/>ii. a copyright notice; and<br \\/>iii. a notice that refers to these Terms of Use; and<br \\/>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.<\\/p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.<\\/p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.\\u00a0<strong>You shall not claim or represent that any materials created by you and\\/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.<\\/strong><\\/p><ol start=\\\"7\\\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO\\u2019s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.<\\/li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO\\u2019s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.<\\/li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.\\u00a0<\\/li><\\/ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.<\\/p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.\\u00a0<\\/p><p><strong>Disclaimer of Warranties and Liability<\\/strong><\\/p><ol start=\\\"10\\\"><li>The Contents of this Site are provided on an \\\"as-is\\\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and\\/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br \\/>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br \\/>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and\\/or any other harmful elements.<\\/li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) any loss of access to or use of this Site, howsoever caused;<br \\/>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br \\/>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br \\/>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.<\\/li><\\/ol><p><strong>Indemnity<\\/strong><\\/p><ol start=\\\"12\\\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br \\/>(a) your access to or use of this Site;<br \\/>(b) your use of the Contents and any materials developed based on the Contents; and\\/or<br \\/>(c) your breach of any of these Terms of Use.<\\/li><\\/ol><p><strong>No Representations<\\/strong><\\/p><ol start=\\\"13\\\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to \\u2013<br \\/>(a) ESIGO\\u2019s statutory duties, functions and powers; and<br \\/>(b) ESIGO\\u2019s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO\\u2019s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.<\\/li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.<\\/li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO\\u2019s sole and absolute discretion without prior notice to you.<\\/li><li>You shall obtain your own professional and\\/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.<\\/li><\\/ol><p><strong>Availability and Right of Access<\\/strong><\\/p><ol start=\\\"17\\\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.<\\/li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.<\\/li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.<\\/li><li>You agree that you will not:<br \\/>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br \\/>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br \\/>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.<\\/li><\\/ol><p><strong>Hyperlinks from This Site to Third Party Websites<\\/strong><\\/p><ol start=\\\"21\\\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.<\\/li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.<\\/li><\\/ol><p><strong>Hyperlinks to This Website from Third Party Websites<\\/strong><\\/p><ol start=\\\"23\\\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.<\\/li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.<\\/li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.<\\/li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.<\\/li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.<\\/li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.<\\/li><\\/ol><p><strong>Permission for Use<\\/strong><\\/p><ol start=\\\"29\\\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.<\\/li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.<\\/li><\\/ol><p><strong>Governing Law<\\/strong><\\/p><ol start=\\\"31\\\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.<\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(12193,7979,'_elementor_page_assets','a:0:{}'),(12194,7963,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(12205,7982,'_wp_page_template','default'),(12206,7982,'_elementor_edit_mode','builder'),(12207,7982,'_elementor_template_type','wp-page'),(12208,7982,'_elementor_version','3.15.3'),(12209,7982,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p><p><strong>- Jakarta<br \\/><\\/strong>ITC Roxy Mas Blok C1, <br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12210,7982,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12211,7982,'_elementor_pro_version','3.15.0'),(12212,7983,'_wp_page_template','default'),(12213,7983,'_elementor_edit_mode','builder'),(12214,7983,'_elementor_template_type','wp-page'),(12215,7983,'_elementor_version','3.15.3'),(12216,7983,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p><strong>- Shenzhen<br \\/><\\/strong>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p><strong>- Taipei<br \\/><\\/strong>3F.-13, No. 79,<br \\/>Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br \\/>New Taipei City 22101, Republic of China<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Taichung<br \\/><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/p><p><strong>- Jakarta<br \\/><\\/strong>ITC Roxy Mas Blok C1, <br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12217,7983,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12218,7983,'_elementor_pro_version','3.15.0'),(12219,7984,'_wp_page_template','default'),(12220,7984,'_elementor_edit_mode','builder'),(12221,7984,'_elementor_template_type','wp-page'),(12222,7984,'_elementor_version','3.15.3'),(12223,7984,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>- Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12224,7984,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12225,7984,'_elementor_pro_version','3.15.0'),(12227,7985,'_wp_page_template','default'),(12228,7985,'_elementor_edit_mode','builder'),(12229,7985,'_elementor_template_type','wp-page'),(12230,7985,'_elementor_version','3.15.3'),(12231,7985,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>- Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12232,7985,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12233,7985,'_elementor_pro_version','3.15.0'),(12234,7986,'_wp_page_template','default'),(12235,7986,'_elementor_edit_mode','builder'),(12236,7986,'_elementor_template_type','wp-page'),(12237,7986,'_elementor_version','3.15.3'),(12238,7986,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>- Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12239,7986,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12240,7986,'_elementor_pro_version','3.15.0'),(12241,7987,'_wp_page_template','default'),(12242,7987,'_elementor_edit_mode','builder'),(12243,7987,'_elementor_template_type','wp-page'),(12244,7987,'_elementor_version','3.15.3'),(12245,7987,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>- Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12246,7987,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12247,7987,'_elementor_pro_version','3.15.0'),(12250,7988,'_wp_page_template','default'),(12251,7988,'_elementor_edit_mode','builder'),(12252,7988,'_elementor_template_type','wp-page'),(12253,7988,'_elementor_version','3.15.3'),(12254,7988,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>- Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12255,7988,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12256,7988,'_elementor_pro_version','3.15.0'),(12258,7989,'_wp_page_template','default'),(12259,7989,'_elementor_edit_mode','builder'),(12260,7989,'_elementor_template_type','wp-page'),(12261,7989,'_elementor_version','3.15.3'),(12262,7989,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>- Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12263,7989,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12264,7989,'_elementor_pro_version','3.15.0'),(12266,7990,'_wp_page_template','default'),(12267,7990,'_elementor_edit_mode','builder'),(12268,7990,'_elementor_template_type','wp-page'),(12269,7990,'_elementor_version','3.15.3'),(12270,7990,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>- Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12271,7990,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12272,7990,'_elementor_pro_version','3.15.0'),(12276,7991,'_wp_page_template','default'),(12277,7991,'_elementor_edit_mode','builder'),(12278,7991,'_elementor_template_type','wp-page'),(12279,7991,'_elementor_version','3.15.3'),(12280,7991,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>- Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12281,7991,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12282,7991,'_elementor_pro_version','3.15.0'),(12284,7992,'_wp_page_template','default'),(12285,7992,'_elementor_edit_mode','builder'),(12286,7992,'_elementor_template_type','wp-page'),(12287,7992,'_elementor_version','3.15.3'),(12288,7992,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>- Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>- Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>- Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>- Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">- Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>- Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12289,7992,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12290,7992,'_elementor_pro_version','3.15.0'),(12292,7993,'_wp_page_template','default'),(12293,7993,'_elementor_edit_mode','builder'),(12294,7993,'_elementor_template_type','wp-page'),(12295,7993,'_elementor_version','3.15.3'),(12296,7993,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>~ Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12297,7993,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12298,7993,'_elementor_pro_version','3.15.0'),(12311,7996,'_wp_page_template','default'),(12312,7996,'_elementor_edit_mode','builder'),(12313,7996,'_elementor_template_type','wp-page'),(12314,7996,'_elementor_version','3.15.3'),(12315,7996,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>~ Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12316,7996,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12317,7996,'_elementor_pro_version','3.15.0'),(12318,7997,'_wp_page_template','default'),(12319,7997,'_elementor_edit_mode','builder'),(12320,7997,'_elementor_template_type','wp-page'),(12321,7997,'_elementor_version','3.15.3'),(12322,7997,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Taipei<br><\\/span>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p><strong>~ Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12323,7997,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12324,7997,'_elementor_pro_version','3.15.0'),(12325,7998,'_wp_page_template','default'),(12326,7998,'_elementor_edit_mode','builder'),(12327,7998,'_elementor_template_type','wp-page'),(12328,7998,'_elementor_version','3.15.3'),(12329,7998,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Taipei<br><\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">3F.-13, No. 79,<\\/span><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n\\n<p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p><strong>~ Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12330,7998,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12331,7998,'_elementor_pro_version','3.15.0'),(12334,7999,'_wp_page_template','default'),(12335,7999,'_elementor_edit_mode','builder'),(12336,7999,'_elementor_template_type','wp-page'),(12337,7999,'_elementor_version','3.15.3'),(12338,7999,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Taipei<br><\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">3F.-13, No. 79,<\\/span><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n\\n<p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p><strong>~ Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12339,7999,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12340,7999,'_elementor_pro_version','3.15.0'),(12342,8000,'_wp_page_template','default'),(12343,8000,'_elementor_edit_mode','builder'),(12344,8000,'_elementor_template_type','wp-page'),(12345,8000,'_elementor_version','3.15.3'),(12346,8000,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Taipei<br><\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">3F.-13, No. 79,<\\/span><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n\\n<p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p><strong>~ Taichung<br><\\/strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12347,8000,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12348,8000,'_elementor_pro_version','3.15.0'),(12350,8001,'_wp_page_template','default'),(12351,8001,'_elementor_edit_mode','builder'),(12352,8001,'_elementor_template_type','wp-page'),(12353,8001,'_elementor_version','3.15.3'),(12354,8001,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br><\\/span><\\/b><span style=\\\"font-family: Arial, sans-serif;\\\"><\\/span>3F.-13, No. 79,<u1:p><\\/u1:p><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><span style=\\\"font-family: Roboto;\\\"><u1:p><\\/u1:p><\\/span><o:p><\\/o:p><\\/p>\\n<p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\n<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<o:p><\\/o:p><\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12355,8001,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12356,8001,'_elementor_pro_version','3.15.0'),(12360,8002,'_wp_page_template','default'),(12361,8002,'_elementor_edit_mode','builder'),(12362,8002,'_elementor_template_type','wp-page'),(12363,8002,'_elementor_version','3.15.3'),(12364,8002,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br><\\/span><\\/b><span style=\\\"font-family: Arial, sans-serif;\\\"><\\/span>3F.-13, No. 79,<u1:p><\\/u1:p><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><span style=\\\"font-family: Roboto;\\\"><u1:p><\\/u1:p><\\/span><o:p><\\/o:p><\\/p>\\n<p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\n<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<o:p><\\/o:p><\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12365,8002,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12366,8002,'_elementor_pro_version','3.15.0'),(12368,8003,'_wp_page_template','default'),(12369,8003,'_elementor_edit_mode','builder'),(12370,8003,'_elementor_template_type','wp-page'),(12371,8003,'_elementor_version','3.15.3'),(12372,8003,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br><\\/span><\\/b><span style=\\\"font-family: Arial, sans-serif;\\\"><\\/span>3F.-13, No. 79,<u1:p><\\/u1:p><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><span style=\\\"font-family: Roboto;\\\"><u1:p><\\/u1:p><\\/span><o:p><\\/o:p><\\/p>\\n<p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\n<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<o:p><\\/o:p><\\/span><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12373,8003,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12374,8003,'_elementor_pro_version','3.15.0'),(12376,8004,'_wp_page_template','default'),(12377,8004,'_elementor_edit_mode','builder'),(12378,8004,'_elementor_template_type','wp-page'),(12379,8004,'_elementor_version','3.15.3'),(12380,8004,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br \\/><\\/span>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br \\/><\\/span><\\/b>3F.-13, No. 79,<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p><p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\u00a0<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12381,8004,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12382,8004,'_elementor_pro_version','3.15.0'),(12386,8005,'_wp_page_template','default'),(12387,8005,'_elementor_edit_mode','builder'),(12388,8005,'_elementor_template_type','wp-page'),(12389,8005,'_elementor_version','3.15.3'),(12390,8005,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br \\/><\\/span>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br \\/><\\/span><\\/b>3F.-13, No. 79,<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p><p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\u00a0<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12391,8005,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12392,8005,'_elementor_pro_version','3.15.0'),(12394,8006,'_wp_page_template','default'),(12395,8006,'_elementor_edit_mode','builder'),(12396,8006,'_elementor_template_type','wp-page'),(12397,8006,'_elementor_version','3.15.3'),(12398,8006,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br \\/><\\/span>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br \\/><\\/span><\\/b>3F.-13, No. 79,<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p><p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\u00a0<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12399,8006,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12400,8006,'_elementor_pro_version','3.15.0'),(12402,8007,'_wp_page_template','default'),(12403,8007,'_elementor_edit_mode','builder'),(12404,8007,'_elementor_template_type','wp-page'),(12405,8007,'_elementor_version','3.15.3'),(12406,8007,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br><\\/span><\\/b>3F.-13, No. 79,<\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\n\\n<span style=\\\"font-size: 11pt; line-height: 107%; font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd\\nRd.,<br>\\nXitun Dist.,<br>\\nTaichung City 40766, Republic of China<\\/span><br><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12407,8007,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12408,8007,'_elementor_pro_version','3.15.0'),(12412,8008,'_wp_page_template','default'),(12413,8008,'_elementor_edit_mode','builder'),(12414,8008,'_elementor_template_type','wp-page'),(12415,8008,'_elementor_version','3.15.3'),(12416,8008,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br><\\/span><\\/b>3F.-13, No. 79,<\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\n\\n<span style=\\\"font-size: 11pt; line-height: 107%; font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd\\nRd.,<br>\\nXitun Dist.,<br>\\nTaichung City 40766, Republic of China<\\/span><br><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12417,8008,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12418,8008,'_elementor_pro_version','3.15.0'),(12420,8009,'_wp_page_template','default'),(12421,8009,'_elementor_edit_mode','builder'),(12422,8009,'_elementor_template_type','wp-page'),(12423,8009,'_elementor_version','3.15.3'),(12424,8009,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br><\\/span>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br><\\/span><\\/b>3F.-13, No. 79,<\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p>\\n<p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p>\\n<p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><span style=\\\"font-family: Roboto;\\\"><o:p><\\/o:p><\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\">\\n\\n<span style=\\\"font-size: 11pt; line-height: 107%; font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd\\nRd.,<br>\\nXitun Dist.,<br>\\nTaichung City 40766, Republic of China<\\/span><br><\\/p>\\n<p><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12425,8009,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12426,8009,'_elementor_pro_version','3.15.0'),(12428,8010,'_wp_page_template','default'),(12429,8010,'_elementor_edit_mode','builder'),(12430,8010,'_elementor_template_type','wp-page'),(12431,8010,'_elementor_version','3.15.3'),(12432,8010,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br \\/><\\/span>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br \\/><\\/span><\\/b>3F.-13, No. 79,<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p><p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-size: 11pt; line-height: 107%; font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12433,8010,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12434,8010,'_elementor_pro_version','3.15.0'),(12449,6838,'_elementor_controls_usage','a:3:{s:14:\"call-to-action\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:4;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:4:{s:5:\"title\";i:1;s:11:\"description\";i:1;s:6:\"button\";i:1;s:4:\"link\";i:1;}s:18:\"section_main_image\";a:1:{s:8:\"bg_image\";i:1;}}s:5:\"style\";a:1:{s:12:\"button_style\";a:3:{s:23:\"button_hover_text_color\";i:1;s:29:\"button_hover_background_color\";i:1;s:25:\"button_hover_border_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(12451,8012,'_elementor_edit_mode','builder'),(12452,8012,'_elementor_template_type','wp-page'),(12453,8012,'_elementor_version','3.15.3'),(12454,8012,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12455,8012,'_wp_page_template','default'),(12456,8012,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12457,8012,'_elementor_pro_version','3.15.0'),(12459,8013,'_elementor_edit_mode','builder'),(12460,8013,'_elementor_template_type','wp-page'),(12461,8013,'_elementor_version','3.15.3'),(12462,8013,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":5,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\"},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12463,8013,'_wp_page_template','default'),(12464,8013,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12465,8013,'_elementor_pro_version','3.15.0'),(12467,8014,'_elementor_edit_mode','builder'),(12468,8014,'_elementor_template_type','wp-page'),(12469,8014,'_elementor_version','3.15.3'),(12470,8014,'_elementor_data','[{\"id\":\"9b1a55f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\",\"css_classes\":\"hero-area\"},\"elements\":[{\"id\":\"863b5a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e17eb70\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"_id\":\"13e8a94\",\"bizmax_slider_title\":\"Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\",\"bizmax_slider_text\":\"Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-1.png\",\"id\":6628,\"size\":\"\",\"alt\":\"Flash Banner 1\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\",\"bizmax_slider_text\":\"Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"_id\":\"fe7a3b5\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-2.png\",\"id\":6629,\"size\":\"\",\"alt\":\"Flash Banner 2\",\"source\":\"library\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Service Information\",\"bizmax_slider_title\":\"ESIGO: Your Partner in Performance Optimization and Continuity!\",\"bizmax_slider_text\":\"Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our\\u00a0commitment.\",\"bizmax_slider_btn\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_slider_btn_text\":\"Get A Quote\",\"bizmax_bg_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/Banner-3.png\",\"id\":6630,\"size\":\"\",\"alt\":\"Flash Banner 3\",\"source\":\"library\"},\"_id\":\"bfb25be\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"4\",\"bizmax_slider_column_phone\":\"2\",\"bizmax_slider_autoplay_times\":\"5000\",\"bizmax_slider_speed\":\"1000\",\"bizmax_social_list\":[{\"bizmax_social_icon\":{\"value\":\"\",\"library\":\"\"},\"bizmax_social_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a59aae\"}],\"bizmax_slider_dots\":\"\"},\"elements\":[],\"widgetType\":\"bizmax-hero-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace083\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/services_bg.jpeg\",\"id\":4785,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"51a81c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"a56aa36\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fab881\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"8203571\",\"elType\":\"widget\",\"settings\":{\"template_id\":\"6838\",\"post_query_include\":[],\"post_query_include_authors\":[\"1\"],\"posts_per_page\":4,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":1140,\"sizes\":[]},\"slides_to_show\":\"2\",\"speed\":300,\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"arrow_hover_color\":\"#004699\",\"post_query_posts_ids\":[\"6923\",\"6917\",\"6911\",\"6883\"],\"post_query_exclude\":[],\"post_query_avoid_duplicates\":\"yes\",\"post_query_offset\":1},\"elements\":[],\"widgetType\":\"loop-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12471,8014,'_wp_page_template','default'),(12472,8014,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12473,8014,'_elementor_pro_version','3.15.0'),(12475,17,'_elementor_controls_usage','a:4:{s:18:\"bizmax-hero-slider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:1:{s:12:\"bizmax_lists\";i:1;}s:16:\"bizmax_tab_three\";a:1:{s:18:\"bizmax_social_list\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:15:\"animation_delay\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"layout\";i:2;s:15:\"stretch_section\";i:2;s:8:\"overflow\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:11:\"css_classes\";i:1;s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";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:13:\"loop-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:14:\"section_layout\";a:3:{s:11:\"template_id\";i:1;s:14:\"posts_per_page\";i:1;s:14:\"slides_to_show\";i:1;}s:13:\"section_query\";a:6:{s:18:\"post_query_include\";i:1;s:26:\"post_query_include_authors\";i:1;s:20:\"post_query_posts_ids\";i:1;s:18:\"post_query_exclude\";i:1;s:27:\"post_query_avoid_duplicates\";i:1;s:17:\"post_query_offset\";i:1;}s:25:\"section_carousel_settings\";a:1:{s:5:\"speed\";i:1;}s:27:\"section_navigation_settings\";a:2:{s:24:\"navigation_previous_icon\";i:1;s:20:\"navigation_next_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:21:\"_element_custom_width\";i:1;}}s:5:\"style\";a:1:{s:25:\"section_design_navigation\";a:2:{s:11:\"arrows_size\";i:1;s:17:\"arrow_hover_color\";i:1;}}}}}'),(12487,8017,'_wp_page_template','default'),(12488,8017,'_elementor_edit_mode','builder'),(12489,8017,'_elementor_template_type','wp-page'),(12490,8017,'_elementor_version','3.15.3'),(12491,8017,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br \\/><\\/span>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br \\/><\\/span><\\/b>3F.-13, No. 79,<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p><p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-size: 11pt; line-height: 107%; font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12492,8017,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12493,8017,'_elementor_pro_version','3.15.0'),(12494,8018,'_wp_page_template','default'),(12495,8018,'_elementor_edit_mode','builder'),(12496,8018,'_elementor_template_type','wp-page'),(12497,8018,'_elementor_version','3.15.3'),(12498,8018,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p><strong>~ Hong Kong<br \\/><\\/strong>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">No. 40 C, Jln Desa Bakti, Taman Desa,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Off Jalan Klang Lama,\\u00a0<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58100, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br \\/><\\/span>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br \\/><\\/span><\\/b>3F.-13, No. 79,<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p><p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-size: 11pt; line-height: 107%; font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12499,8018,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12500,8018,'_elementor_pro_version','3.15.0'),(12501,8019,'_wp_page_template','default'),(12502,8019,'_elementor_edit_mode','builder'),(12503,8019,'_elementor_template_type','wp-page'),(12504,8019,'_elementor_version','3.15.3'),(12505,8019,'_elementor_data','[{\"id\":\"d286339\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4b274ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"861fe31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/08\\/icon-logo.png\",\"id\":6649,\"size\":\"\",\"alt\":\"icon-logo\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5.998,\"unit\":\"%\"},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":-4.1,\"unit\":\"%\"},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_css_classes\":\"section-anim-shape semi_rotate\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b412c5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b7b5195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"02d4088\",\"elType\":\"widget\",\"settings\":{\"bizmax_exp_thumb_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_img.jpeg\",\"id\":4734,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_shape_one\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_shape_1-1.png\",\"id\":4841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_thumb_bg\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_bg.jpeg\",\"id\":4731,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/07\\/experience_icon-1.svg\",\"id\":4838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_exp_box_num\":\"40\",\"bizmax_exp_box_num_after\":\"+\",\"bizmax_exp_box_desc\":\"Work Experience\"},\"elements\":[],\"widgetType\":\"bizmax-about-experience\"}],\"isInner\":true},{\"id\":\"7bec314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":400},\"elements\":[{\"id\":\"2e4425d\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"About Us\",\"bizmax_section_title\":\"Who We Are\",\"bizmax_section_desc\":\"<div style=\\\"text-align:justify;\\\">The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.<\\/div>\",\"bizmax_stitle_style\":\"style-2\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9baaeb\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"__dynamic__\":[],\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6af3f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc052a8\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Vision\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"39ce0d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"44b9e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d024a2\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Mission\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">Serve and uplift our customer values<\\/li><li style=\\\"text-align: left;\\\">Enhance professionalism and intelligent services<\\/li><li style=\\\"text-align: left;\\\">Offer comprehensive smart Ai-Powered solutions<\\/li><li style=\\\"text-align: left;\\\">Deliver faster and smarter services with dedication &amp; commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true},{\"id\":\"6797519\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e433b0\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"Values\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<ul><li style=\\\"text-align: left;\\\">People<\\/li><li style=\\\"text-align: left;\\\">Passion<\\/li><li style=\\\"text-align: left;\\\">Respect<\\/li><li style=\\\"text-align: left;\\\">Integrity<\\/li><li style=\\\"text-align: left;\\\">Commitment<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3db7a50\",\"elType\":\"section\",\"settings\":{\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"704ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b10893f\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"\",\"bizmax_section_title\":\"\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_section_desc\":\"<div style=\\\"text-align: justify;\\\"><p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new \\u2014 or modify existing \\u2014 business processes, culture, and customer experiences to meet changing business and market requirements.<\\/p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<\\/p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY \\u00e0 la ESIGO (pronounced Easy Go).<\\/p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<\\/p><p>Having been operating in these countries and cities Singapore, <span class=\\\"yKMVIe\\\" role=\\\"heading\\\" aria-level=\\\"1\\\">Ho Chi Minh City<\\/span>, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"},{\"id\":\"dd882eb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5064957\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"557f734\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/map_final.png\",\"id\":7735,\"size\":\"\",\"alt\":\"map_final\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd64d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"custom_css\":\".cs_section_text ul li {\\n    list-style: disc\\n}\"},\"elements\":[{\"id\":\"4a491dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.827,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8ec4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>~ Singapore Experience Centre<br \\/><\\/strong>8 Ubi Road 2<br \\/>#06-31 Zervex<br \\/>Singapore 408538<\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Singapore Office<br \\/><\\/span>33 Ubi Ave 3<br \\/>#05-70 Vertex<br \\/>Singapore 408868<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Bangkok<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-family: Roboto;\\\">Chomphon, Chatuchak,<\\/span><\\/p><p><span style=\\\"font-family: Roboto; font-size: 11pt; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">Bangkok, Thailand 10900<\\/span><\\/p><p><strong>~ Ho Chi Minh<br \\/><\\/strong>62A Pham Ngoc Thach,<br \\/>Vo Thi Sau Ward, District 3,<br \\/>Ho Chi Minh City<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d78600b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.505,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee2f2be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Hong Kong<br \\/><\\/span>Unit F, 22\\/F, MG Tower,<br \\/>133 Hoi Bun Road, Kwun Tong,<br \\/>Kowloon, Hong Kong<span style=\\\"font-weight: bolder; color: #555555;\\\"><br \\/><\\/span><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Jakarta<br \\/><\\/span>ITC Roxy Mas Blok C1,<br \\/>No. 31 Jl Hasyim Ashari\\u00a0<br \\/>Jakarta 10150, Indonesia<strong><br \\/><\\/strong><\\/p><p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Kuala Lumpur<br \\/><\\/span><span lang=\\\"EN-US\\\" style=\\\"font-size: 11pt; font-family: Calibri, sans-serif;\\\"><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Level 18, Unit 15, Menara K1, No. 1<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Lorong 3\\/137C, Off Jalan Kelang Lama,<\\/span><br style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\" \\/><span style=\\\"font-family: Roboto, sans-serif; font-size: 16px;\\\">Kuala Lumpur 58000, Malaysia<\\/span><\\/span><\\/p><p><strong>~ Shanghai<br \\/><\\/strong>16\\/F, Block J, Jiali Building,<br \\/>No. 2 Long, 1228 YanAn Road West,<br \\/>Shanghai, People\\u2019s Republic of China<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86a9c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d47c0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: bolder; color: #555555;\\\">~ Shenzhen<br \\/><\\/span>11C Xinlikang Building<br \\/>No. 3044 Xinghai Avenue, Nanshan Street,<br \\/>Qianhai, Shenzhen, People\\u2019s Republic of China<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><b><span style=\\\"font-family: Roboto;\\\">~ Taipei<br \\/><\\/span><\\/b>3F.-13, No. 79,<\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<\\/span><\\/span><\\/p><p><span style=\\\"font-family: Arial, sans-serif; color: var( --e-global-color-text ); font-weight: var( --e-global-typography-text-font-weight ); text-align: var(--bs-body-text-align);\\\">New Taipei City 22101, Republic of China<\\/span><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">~ Taichung<\\/span><\\/strong><\\/p><p style=\\\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\\\"><span style=\\\"font-size: 11pt; line-height: 107%; font-family: Roboto;\\\">4F., No.188 Zhonggong 2nd Rd.,<br \\/>Xitun Dist.,<br \\/>Taichung City 40766, Republic of China<\\/span><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12506,8019,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12507,8019,'_elementor_pro_version','3.15.0'),(12508,30,'_elementor_controls_usage','a:6:{s:5:\"image\";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_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:7:{s:14:\"_element_width\";i:1;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:9:\"_offset_x\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:12:\"_css_classes\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:23:\"bizmax-about-experience\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"buconz_tab_content\";a:6:{s:20:\"bizmax_exp_thumb_img\";i:1;s:20:\"bizmax_exp_shape_one\";i:1;s:23:\"bizmax_exp_box_thumb_bg\";i:1;s:19:\"bizmax_exp_box_icon\";i:1;s:18:\"bizmax_exp_box_num\";i:1;s:19:\"bizmax_exp_box_desc\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:11;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:11;s:7:\"padding\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:15:\"animation_delay\";i:2;}}}}s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:20:\"bizmax_section_label\";i:5;s:20:\"bizmax_section_title\";i:5;s:19:\"bizmax_section_desc\";i:5;s:19:\"bizmax_stitle_style\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:4:{s:16:\"content_position\";i:2;s:6:\"layout\";i:2;s:15:\"stretch_section\";i:2;s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}}}}'),(12516,8020,'_elementor_edit_mode','builder'),(12517,8020,'_elementor_template_type','kit'),(12518,8020,'_wp_page_template','default'),(12519,8020,'_elementor_page_settings','a:2:{s:9:\"site_name\";s:5:\"ESIGO\";s:16:\"site_description\";s:0:\"\";}'),(12521,8,'_elementor_data','[]'),(12522,8021,'_elementor_edit_mode','builder'),(12523,8021,'_elementor_template_type','kit'),(12524,8021,'_wp_page_template','default'),(12525,8021,'_elementor_page_settings','a:10:{s:9:\"site_name\";s:5:\"ESIGO\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}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_logo\";a:5:{s:3:\"url\";s:74:\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\";s:2:\"id\";i:6649;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:9:\"icon-logo\";s:6:\"source\";s:7:\"library\";}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(12527,8021,'_elementor_data','[]'),(12528,8,'_elementor_page_assets','a:0:{}'),(12529,8,'_elementor_version','3.15.3'),(12530,8,'_elementor_pro_version','3.15.0'),(12537,8022,'_elementor_source','post'),(12538,8022,'_elementor_edit_mode','builder'),(12539,8022,'_elementor_template_type','popup'),(12540,8022,'_elementor_version','3.15.3'),(12541,8022,'_elementor_pro_version','3.15.0'),(12542,8022,'_edit_lock','1712124452:1'),(12543,8022,'_wp_page_template','default'),(12544,8022,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":0,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\"},\"elements\":[{\"id\":\"d89f664\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"space_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"838578c\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"css_classes\":\"child-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent !important;\\nposition: relative !important;\\n}\\n\\n.child-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"b2ae2a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7d51fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b62055c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"438b982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f19fdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"846d6bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(12545,8022,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(12546,8022,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12547,8023,'_elementor_source','post'),(12548,8023,'_elementor_edit_mode','builder'),(12549,8023,'_elementor_template_type','popup'),(12550,8023,'_elementor_version','3.15.3'),(12551,8023,'_elementor_pro_version','3.15.0'),(12552,8023,'_wp_page_template','default'),(12553,8023,'_elementor_data','[{\"id\":\"80f946c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90dd4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6dbe40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(12554,8023,'_elementor_page_assets','a:0:{}'),(12555,8023,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12556,8024,'_elementor_source','post'),(12557,8024,'_elementor_edit_mode','builder'),(12558,8024,'_elementor_template_type','popup'),(12559,8024,'_elementor_version','3.15.3'),(12560,8024,'_elementor_pro_version','3.15.0'),(12561,8024,'_wp_page_template','default'),(12562,8024,'_elementor_data','[{\"id\":\"80f946c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90dd4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6dbe40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(12563,8024,'_elementor_page_assets','a:0:{}'),(12564,8024,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12566,8022,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12567,8025,'_wpcode_auto_insert','1'),(12568,8025,'_wpcode_auto_insert_number','1'),(12569,8025,'_wpcode_conditional_logic_enabled',''),(12570,8025,'_wpcode_priority','10'),(12571,8025,'_wpcode_note',''),(12572,8025,'_wpcode_location_extra',''),(12573,8025,'_wpcode_shortcode_attributes','a:0:{}'),(12574,8025,'_wpcode_conditional_logic','a:0:{}'),(12575,8026,'_wpcode_auto_insert','1'),(12576,8026,'_wpcode_auto_insert_number','1'),(12577,8026,'_wpcode_conditional_logic_enabled',''),(12578,8026,'_wpcode_priority','10'),(12579,8026,'_wpcode_note',''),(12580,8026,'_wpcode_location_extra',''),(12581,8026,'_wpcode_shortcode_attributes','a:0:{}'),(12582,8026,'_wpcode_conditional_logic','a:0:{}'),(12584,8027,'_elementor_source','post'),(12585,8027,'_elementor_edit_mode','builder'),(12586,8027,'_elementor_template_type','popup'),(12587,8027,'_elementor_version','3.15.3'),(12588,8027,'_elementor_pro_version','3.15.0'),(12589,8027,'_wp_page_template','default'),(12590,8027,'_elementor_data','[{\"id\":\"80f946c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]}},\"elements\":[{\"id\":\"90dd4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6dbe40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(12591,8027,'_elementor_page_assets','a:0:{}'),(12592,8027,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12593,8027,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12596,8028,'_elementor_source','post'),(12597,8028,'_elementor_edit_mode','builder'),(12598,8028,'_elementor_template_type','popup'),(12599,8028,'_elementor_version','3.15.3'),(12600,8028,'_elementor_pro_version','3.15.0'),(12601,8028,'_wp_page_template','default'),(12602,8028,'_elementor_data','[{\"id\":\"80f946c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"90dd4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6dbe40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(12603,8028,'_elementor_page_assets','a:0:{}'),(12604,8028,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12605,8028,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12608,8029,'_elementor_source','post'),(12609,8029,'_elementor_edit_mode','builder'),(12610,8029,'_elementor_template_type','popup'),(12611,8029,'_elementor_version','3.15.3'),(12612,8029,'_elementor_pro_version','3.15.0'),(12613,8029,'_wp_page_template','default'),(12614,8029,'_elementor_data','[{\"id\":\"80f946c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"90dd4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6dbe40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(12615,8029,'_elementor_page_assets','a:0:{}'),(12616,8029,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12617,8029,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12621,8030,'_elementor_source','post'),(12622,8030,'_elementor_edit_mode','builder'),(12623,8030,'_elementor_template_type','popup'),(12624,8030,'_elementor_version','3.15.3'),(12625,8030,'_elementor_pro_version','3.15.0'),(12626,8030,'_wp_page_template','default'),(12627,8030,'_elementor_data','[{\"id\":\"80f946c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\"},\"elements\":[{\"id\":\"90dd4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6dbe40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(12628,8030,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12629,8030,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12630,8030,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12634,8,'_elementor_css','a:6:{s:4:\"time\";i:1712095486;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:\"\";}'),(12635,6626,'_elementor_css','a:6:{s:4:\"time\";i:1712095487;s:5:\"fonts\";a:2:{i:0;s:5:\"Rubik\";i:3;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12637,17,'_elementor_css','a:6:{s:4:\"time\";i:1712095521;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12638,6838,'_elementor_css','a:6:{s:4:\"time\";i:1712095521;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:4:{i:0;s:7:\"1f64d16\";i:1;s:7:\"1f64d16\";i:2;s:7:\"1f64d16\";i:3;s:7:\"1f64d16\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12639,1978,'_elementor_css','a:6:{s:4:\"time\";i:1712095585;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12654,8032,'_elementor_edit_mode','builder'),(12655,8032,'_elementor_template_type','wp-page'),(12656,8032,'_elementor_version','3.15.3'),(12657,8032,'_elementor_pro_version','3.15.0'),(12658,8032,'_wp_page_template','default'),(12659,8032,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12660,8032,'_elementor_page_assets','a:0:{}'),(12661,8032,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(12663,7307,'_elementor_css','a:6:{s:4:\"time\";i:1712096230;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12664,8033,'_wp_page_template','default'),(12665,8033,'_elementor_edit_mode','builder'),(12666,8033,'_elementor_template_type','wp-page'),(12667,8033,'_elementor_version','3.15.3'),(12668,8033,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(12669,8033,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(12670,8033,'_elementor_pro_version','3.15.0'),(12671,8033,'_elementor_css','a:6:{s:4:\"time\";i:1712095683;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12672,8034,'_wp_page_template','default'),(12673,8034,'_elementor_edit_mode','builder'),(12674,8034,'_elementor_template_type','wp-page'),(12675,8034,'_elementor_version','3.15.3'),(12676,8034,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(12677,8034,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(12678,8034,'_elementor_pro_version','3.15.0'),(12679,8034,'_elementor_css','a:6:{s:4:\"time\";i:1712095683;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12680,8035,'_wp_page_template','default'),(12681,8035,'_elementor_edit_mode','builder'),(12682,8035,'_elementor_template_type','wp-page'),(12683,8035,'_elementor_version','3.15.3'),(12684,8035,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(12685,8035,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(12686,8035,'_elementor_pro_version','3.15.0'),(12687,8035,'_elementor_css','a:6:{s:4:\"time\";i:1712095683;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12689,8036,'_elementor_source','post'),(12690,8036,'_elementor_edit_mode','builder'),(12691,8036,'_elementor_template_type','popup'),(12692,8036,'_elementor_version','3.15.3'),(12693,8036,'_elementor_pro_version','3.15.0'),(12694,8036,'_wp_page_template','default'),(12695,8036,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12696,8036,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12697,8036,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12698,8036,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12699,8036,'_elementor_css','a:6:{s:4:\"time\";i:1712096018;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12703,7612,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"1200\" height=\"800\" viewBox=\"15 -35 1200 800\" xml:space=\"preserve\"><desc>Created with Fabric.js 5.2.4</desc><defs></defs><rect x=\"0\" y=\"0\" width=\"100%\" height=\"100%\" fill=\"transparent\"></rect><g transform=\"matrix(1 0 0 1 540 540)\" id=\"19fb3062-f4b3-4cc7-bf28-4737f0c7f807\"><rect style=\"stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1; visibility: hidden;\" x=\"-540\" y=\"-540\" rx=\"0\" ry=\"0\" width=\"1080\" height=\"1080\"></rect></g><g transform=\"matrix(1 0 0 1 540 540)\" id=\"bf913109-a5a2-4a82-aecd-52706f631c81\"></g><g transform=\"matrix(0.65 0 0 0.65 600 364.59)\"><g style=\"\">		<g transform=\"matrix(2.97 0 0 2.97 0.5 -127.08)\"><path style=\"stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(37,47,62); fill-rule: nonzero; opacity: 1;\" transform=\" translate(-152, -48.1)\" d=\"M 86.4 66.4 C 86.4 70.10000000000001 86.80000000000001 73.10000000000001 87.5 75.30000000000001 C 88.3 77.50000000000001 89.3 79.9 90.7 82.50000000000001 C 91.2 83.30000000000001 91.4 84.10000000000001 91.4 84.80000000000001 C 91.4 85.80000000000001 90.80000000000001 86.80000000000001 89.5 87.80000000000001 L 83.2 92 C 82.3 92.6 81.4 92.9 80.60000000000001 92.9 C 79.60000000000001 92.9 78.60000000000001 92.4 77.60000000000001 91.5 C 76.2 90 75.00000000000001 88.4 74.00000000000001 86.8 C 73.00000000000001 85.1 72.00000000000001 83.2 70.90000000000002 80.89999999999999 C 63.10000000000002 90.1 53.30000000000002 94.69999999999999 41.50000000000002 94.69999999999999 C 33.10000000000002 94.69999999999999 26.40000000000002 92.29999999999998 21.50000000000002 87.49999999999999 C 16.600000000000023 82.69999999999999 14.100000000000021 76.29999999999998 14.100000000000021 68.29999999999998 C 14.100000000000021 59.79999999999998 17.100000000000023 52.899999999999984 23.20000000000002 47.69999999999998 C 29.30000000000002 42.49999999999998 37.40000000000002 39.899999999999984 47.70000000000002 39.899999999999984 C 51.100000000000016 39.899999999999984 54.600000000000016 40.19999999999998 58.30000000000002 40.69999999999998 C 62.00000000000002 41.19999999999998 65.80000000000001 41.99999999999998 69.80000000000001 42.899999999999984 L 69.80000000000001 35.59999999999999 C 69.80000000000001 27.999999999999986 68.20000000000002 22.69999999999999 65.10000000000001 19.599999999999987 C 61.900000000000006 16.499999999999986 56.50000000000001 14.999999999999988 48.80000000000001 14.999999999999988 C 45.30000000000001 14.999999999999988 41.70000000000001 15.399999999999988 38.000000000000014 16.299999999999986 C 34.30000000000001 17.199999999999985 30.700000000000014 18.299999999999986 27.200000000000014 19.699999999999985 C 25.600000000000012 20.399999999999984 24.400000000000013 20.799999999999986 23.700000000000014 20.999999999999986 C 23.000000000000014 21.199999999999985 22.500000000000014 21.299999999999986 22.100000000000012 21.299999999999986 C 20.700000000000014 21.299999999999986 20.00000000000001 20.299999999999986 20.00000000000001 18.199999999999985 L 20.00000000000001 13.299999999999985 C 20.00000000000001 11.699999999999985 20.20000000000001 10.499999999999986 20.70000000000001 9.799999999999985 C 21.20000000000001 9.099999999999985 22.10000000000001 8.399999999999984 23.50000000000001 7.699999999999985 C 27.00000000000001 5.899999999999985 31.20000000000001 4.399999999999985 36.10000000000001 3.199999999999985 C 41 1.9 46.2 1.3 51.7 1.3 C 63.6 1.3 72.30000000000001 4 77.9 9.4 C 83.4 14.8 86.2 23 86.2 34 L 86.2 66.4 z M 45.8 81.6 C 49.099999999999994 81.6 52.5 81 56.099999999999994 79.8 C 59.699999999999996 78.6 62.89999999999999 76.39999999999999 65.6 73.39999999999999 C 67.19999999999999 71.49999999999999 68.39999999999999 69.39999999999999 69 66.99999999999999 C 69.6 64.59999999999998 70 61.69999999999999 70 58.29999999999998 L 70 54.09999999999998 C 67.1 53.39999999999998 64 52.79999999999998 60.8 52.39999999999998 C 57.599999999999994 51.99999999999998 54.5 51.799999999999976 51.4 51.799999999999976 C 44.699999999999996 51.799999999999976 39.8 53.09999999999997 36.5 55.799999999999976 C 33.2 58.49999999999998 31.6 62.299999999999976 31.6 67.29999999999998 C 31.6 71.99999999999999 32.800000000000004 75.49999999999999 35.300000000000004 77.89999999999998 C 37.7 80.39999999999998 41.2 81.59999999999998 45.800000000000004 81.59999999999998 z M 126.1 92.39999999999999 C 124.3 92.39999999999999 123.1 92.1 122.3 91.39999999999999 C 121.5 90.8 120.8 89.39999999999999 120.2 87.49999999999999 L 96.7 10.2 C 96.10000000000001 8.2 95.8 6.8999999999999995 95.8 6.199999999999999 C 95.8 4.6 96.6 3.6999999999999993 98.2 3.6999999999999993 L 108 3.6999999999999993 C 109.9 3.6999999999999993 111.2 3.999999999999999 111.9 4.699999999999999 C 112.7 5.299999999999999 113.30000000000001 6.699999999999999 113.9 8.6 L 130.70000000000002 74.8 L 146.3 8.599999999999994 C 146.8 6.599999999999994 147.4 5.2999999999999945 148.20000000000002 4.699999999999994 C 149.00000000000003 4.099999999999994 150.4 3.699999999999994 152.20000000000002 3.699999999999994 L 160.20000000000002 3.699999999999994 C 162.10000000000002 3.699999999999994 163.4 3.999999999999994 164.20000000000002 4.699999999999994 C 165.00000000000003 5.299999999999994 165.70000000000002 6.699999999999994 166.10000000000002 8.599999999999994 L 181.90000000000003 75.6 L 199.20000000000005 8.599999999999994 C 199.80000000000004 6.599999999999994 200.50000000000006 5.2999999999999945 201.20000000000005 4.699999999999994 C 202.00000000000006 4.099999999999994 203.30000000000004 3.699999999999994 205.10000000000005 3.699999999999994 L 214.40000000000006 3.699999999999994 C 216.00000000000006 3.699999999999994 216.90000000000006 4.499999999999994 216.90000000000006 6.199999999999994 C 216.90000000000006 6.699999999999994 216.80000000000007 7.199999999999994 216.70000000000007 7.799999999999994 C 216.60000000000008 8.399999999999993 216.40000000000006 9.199999999999994 216.00000000000009 10.299999999999994 L 191.9000000000001 87.6 C 191.3000000000001 89.6 190.60000000000008 90.89999999999999 189.8000000000001 91.5 C 189.00000000000009 92.1 187.7000000000001 92.5 186.00000000000009 92.5 L 177.4000000000001 92.5 C 175.50000000000009 92.5 174.2000000000001 92.2 173.4000000000001 91.5 C 172.60000000000008 90.8 171.9000000000001 89.5 171.50000000000009 87.5 L 156 23 L 140.6 87.4 C 140.1 89.4 139.5 90.7 138.7 91.4 C 137.89999999999998 92.10000000000001 136.5 92.4 134.7 92.4 z M 254.6 95.1 C 249.4 95.1 244.2 94.5 239.2 93.3 C 234.2 92.1 230.29999999999998 90.8 227.7 89.3 C 226.1 88.39999999999999 225 87.39999999999999 224.6 86.5 C 224.2 85.6 224 84.6 224 83.7 L 224 78.60000000000001 C 224 76.50000000000001 224.8 75.50000000000001 226.3 75.50000000000001 C 226.9 75.50000000000001 227.5 75.60000000000001 228.10000000000002 75.80000000000001 C 228.70000000000002 76.00000000000001 229.60000000000002 76.4 230.60000000000002 76.80000000000001 C 234.00000000000003 78.30000000000001 237.70000000000002 79.50000000000001 241.60000000000002 80.30000000000001 C 245.60000000000002 81.10000000000001 249.50000000000003 81.50000000000001 253.50000000000003 81.50000000000001 C 259.8 81.50000000000001 264.70000000000005 80.40000000000002 268.1 78.20000000000002 C 271.5 76.00000000000001 273.3 72.80000000000001 273.3 68.70000000000002 C 273.3 65.90000000000002 272.40000000000003 63.600000000000016 270.6 61.70000000000002 C 268.8 59.80000000000002 265.40000000000003 58.100000000000016 260.5 56.500000000000014 L 246 52 C 238.7 49.7 233.3 46.3 230 41.8 C 226.7 37.4 225 32.5 225 27.299999999999997 C 225 23.099999999999998 225.9 19.4 227.7 16.199999999999996 C 229.5 12.999999999999996 231.89999999999998 10.199999999999996 234.89999999999998 7.9999999999999964 C 237.89999999999998 5.699999999999997 241.29999999999998 3.9999999999999964 245.29999999999998 2.7999999999999963 C 249.29999999999998 1.5999999999999963 253.49999999999997 1.0999999999999963 257.9 1.0999999999999963 C 260.09999999999997 1.0999999999999963 262.4 1.1999999999999964 264.59999999999997 1.4999999999999964 C 266.9 1.7999999999999965 268.99999999999994 2.1999999999999966 271.09999999999997 2.5999999999999965 C 273.09999999999997 3.0999999999999965 274.99999999999994 3.5999999999999965 276.79999999999995 4.199999999999997 C 278.59999999999997 4.799999999999996 279.99999999999994 5.399999999999997 280.99999999999994 5.9999999999999964 C 282.3999999999999 6.799999999999996 283.3999999999999 7.599999999999996 283.99999999999994 8.499999999999996 C 284.59999999999997 9.299999999999997 284.8999999999999 10.399999999999997 284.8999999999999 11.799999999999997 L 284.8999999999999 16.499999999999996 C 284.8999999999999 18.599999999999998 284.0999999999999 19.699999999999996 282.5999999999999 19.699999999999996 C 281.7999999999999 19.699999999999996 280.4999999999999 19.299999999999997 278.7999999999999 18.499999999999996 C 273.0999999999999 15.899999999999997 266.6999999999999 14.599999999999996 259.5999999999999 14.599999999999996 C 253.89999999999992 14.599999999999996 249.39999999999992 15.499999999999996 246.2999999999999 17.399999999999995 C 243.1999999999999 19.299999999999994 241.5999999999999 22.199999999999996 241.5999999999999 26.299999999999997 C 241.5999999999999 29.099999999999998 242.5999999999999 31.499999999999996 244.5999999999999 33.4 C 246.5999999999999 35.3 250.2999999999999 37.199999999999996 255.5999999999999 38.9 L 269.7999999999999 43.4 C 276.9999999999999 45.699999999999996 282.1999999999999 48.9 285.2999999999999 53 C 288.3999999999999 57.1 289.8999999999999 61.8 289.8999999999999 67 C 289.8999999999999 71.3 288.99999999999994 75.2 287.2999999999999 78.6 C 285.4999999999999 82 283.0999999999999 85 279.9999999999999 87.39999999999999 C 276.89999999999986 89.89999999999999 273.1999999999999 91.69999999999999 268.89999999999986 92.99999999999999 C 264.39999999999986 94.39999999999999 259.6999999999999 95.09999999999998 254.59999999999985 95.09999999999998 z\" stroke-linecap=\"round\"></path></g>		<g transform=\"matrix(2.97 0 0 2.97 -38.71 175.19)\"><path style=\"stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,153,0); fill-rule: evenodd; opacity: 1;\" transform=\" translate(-138.78, -150.02)\" d=\"M 273.5 143.7 C 240.6 168 192.8 180.89999999999998 151.7 180.89999999999998 C 94.1 180.89999999999998 42.19999999999999 159.59999999999997 3 124.19999999999997 C -0.10000000000000009 121.39999999999998 2.7 117.59999999999998 6.4 119.79999999999997 C 48.8 144.39999999999998 101.10000000000001 159.29999999999995 155.20000000000002 159.29999999999995 C 191.70000000000002 159.29999999999995 231.8 151.69999999999996 268.70000000000005 136.09999999999997 C 274.20000000000005 133.59999999999997 278.90000000000003 139.69999999999996 273.50000000000006 143.69999999999996 z\" stroke-linecap=\"round\"></path></g>		<g transform=\"matrix(2.97 0 0 2.97 362.46 148.26)\"><path style=\"stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,153,0); fill-rule: evenodd; opacity: 1;\" transform=\" translate(-274.16, -140.95)\" d=\"M 287.2 128.1 C 283 122.69999999999999 259.4 125.5 248.7 126.8 C 245.5 127.2 245 124.39999999999999 247.89999999999998 122.3 C 266.7 109.1 297.59999999999997 112.89999999999999 301.2 117.3 C 304.8 121.8 300.2 152.7 282.59999999999997 167.5 C 279.9 169.8 277.29999999999995 168.6 278.49999999999994 165.6 C 282.49999999999994 155.7 291.3999999999999 133.39999999999998 287.19999999999993 128.1 z\" stroke-linecap=\"round\"></path></g></g></g></svg>'),(12704,7612,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"1200\" height=\"800\" viewBox=\"15 -35 1200 800\" xml:space=\"preserve\"><desc>Created with Fabric.js 5.2.4</desc><defs></defs><rect x=\"0\" y=\"0\" width=\"100%\" height=\"100%\" fill=\"transparent\"></rect><g transform=\"matrix(1 0 0 1 540 540)\" id=\"19fb3062-f4b3-4cc7-bf28-4737f0c7f807\"><rect style=\"stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1; visibility: hidden;\" x=\"-540\" y=\"-540\" rx=\"0\" ry=\"0\" width=\"1080\" height=\"1080\"></rect></g><g transform=\"matrix(1 0 0 1 540 540)\" id=\"bf913109-a5a2-4a82-aecd-52706f631c81\"></g><g transform=\"matrix(0.65 0 0 0.65 600 364.59)\"><g style=\"\">		<g transform=\"matrix(2.97 0 0 2.97 0.5 -127.08)\"><path style=\"stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(37,47,62); fill-rule: nonzero; opacity: 1;\" transform=\" translate(-152, -48.1)\" d=\"M 86.4 66.4 C 86.4 70.10000000000001 86.80000000000001 73.10000000000001 87.5 75.30000000000001 C 88.3 77.50000000000001 89.3 79.9 90.7 82.50000000000001 C 91.2 83.30000000000001 91.4 84.10000000000001 91.4 84.80000000000001 C 91.4 85.80000000000001 90.80000000000001 86.80000000000001 89.5 87.80000000000001 L 83.2 92 C 82.3 92.6 81.4 92.9 80.60000000000001 92.9 C 79.60000000000001 92.9 78.60000000000001 92.4 77.60000000000001 91.5 C 76.2 90 75.00000000000001 88.4 74.00000000000001 86.8 C 73.00000000000001 85.1 72.00000000000001 83.2 70.90000000000002 80.89999999999999 C 63.10000000000002 90.1 53.30000000000002 94.69999999999999 41.50000000000002 94.69999999999999 C 33.10000000000002 94.69999999999999 26.40000000000002 92.29999999999998 21.50000000000002 87.49999999999999 C 16.600000000000023 82.69999999999999 14.100000000000021 76.29999999999998 14.100000000000021 68.29999999999998 C 14.100000000000021 59.79999999999998 17.100000000000023 52.899999999999984 23.20000000000002 47.69999999999998 C 29.30000000000002 42.49999999999998 37.40000000000002 39.899999999999984 47.70000000000002 39.899999999999984 C 51.100000000000016 39.899999999999984 54.600000000000016 40.19999999999998 58.30000000000002 40.69999999999998 C 62.00000000000002 41.19999999999998 65.80000000000001 41.99999999999998 69.80000000000001 42.899999999999984 L 69.80000000000001 35.59999999999999 C 69.80000000000001 27.999999999999986 68.20000000000002 22.69999999999999 65.10000000000001 19.599999999999987 C 61.900000000000006 16.499999999999986 56.50000000000001 14.999999999999988 48.80000000000001 14.999999999999988 C 45.30000000000001 14.999999999999988 41.70000000000001 15.399999999999988 38.000000000000014 16.299999999999986 C 34.30000000000001 17.199999999999985 30.700000000000014 18.299999999999986 27.200000000000014 19.699999999999985 C 25.600000000000012 20.399999999999984 24.400000000000013 20.799999999999986 23.700000000000014 20.999999999999986 C 23.000000000000014 21.199999999999985 22.500000000000014 21.299999999999986 22.100000000000012 21.299999999999986 C 20.700000000000014 21.299999999999986 20.00000000000001 20.299999999999986 20.00000000000001 18.199999999999985 L 20.00000000000001 13.299999999999985 C 20.00000000000001 11.699999999999985 20.20000000000001 10.499999999999986 20.70000000000001 9.799999999999985 C 21.20000000000001 9.099999999999985 22.10000000000001 8.399999999999984 23.50000000000001 7.699999999999985 C 27.00000000000001 5.899999999999985 31.20000000000001 4.399999999999985 36.10000000000001 3.199999999999985 C 41 1.9 46.2 1.3 51.7 1.3 C 63.6 1.3 72.30000000000001 4 77.9 9.4 C 83.4 14.8 86.2 23 86.2 34 L 86.2 66.4 z M 45.8 81.6 C 49.099999999999994 81.6 52.5 81 56.099999999999994 79.8 C 59.699999999999996 78.6 62.89999999999999 76.39999999999999 65.6 73.39999999999999 C 67.19999999999999 71.49999999999999 68.39999999999999 69.39999999999999 69 66.99999999999999 C 69.6 64.59999999999998 70 61.69999999999999 70 58.29999999999998 L 70 54.09999999999998 C 67.1 53.39999999999998 64 52.79999999999998 60.8 52.39999999999998 C 57.599999999999994 51.99999999999998 54.5 51.799999999999976 51.4 51.799999999999976 C 44.699999999999996 51.799999999999976 39.8 53.09999999999997 36.5 55.799999999999976 C 33.2 58.49999999999998 31.6 62.299999999999976 31.6 67.29999999999998 C 31.6 71.99999999999999 32.800000000000004 75.49999999999999 35.300000000000004 77.89999999999998 C 37.7 80.39999999999998 41.2 81.59999999999998 45.800000000000004 81.59999999999998 z M 126.1 92.39999999999999 C 124.3 92.39999999999999 123.1 92.1 122.3 91.39999999999999 C 121.5 90.8 120.8 89.39999999999999 120.2 87.49999999999999 L 96.7 10.2 C 96.10000000000001 8.2 95.8 6.8999999999999995 95.8 6.199999999999999 C 95.8 4.6 96.6 3.6999999999999993 98.2 3.6999999999999993 L 108 3.6999999999999993 C 109.9 3.6999999999999993 111.2 3.999999999999999 111.9 4.699999999999999 C 112.7 5.299999999999999 113.30000000000001 6.699999999999999 113.9 8.6 L 130.70000000000002 74.8 L 146.3 8.599999999999994 C 146.8 6.599999999999994 147.4 5.2999999999999945 148.20000000000002 4.699999999999994 C 149.00000000000003 4.099999999999994 150.4 3.699999999999994 152.20000000000002 3.699999999999994 L 160.20000000000002 3.699999999999994 C 162.10000000000002 3.699999999999994 163.4 3.999999999999994 164.20000000000002 4.699999999999994 C 165.00000000000003 5.299999999999994 165.70000000000002 6.699999999999994 166.10000000000002 8.599999999999994 L 181.90000000000003 75.6 L 199.20000000000005 8.599999999999994 C 199.80000000000004 6.599999999999994 200.50000000000006 5.2999999999999945 201.20000000000005 4.699999999999994 C 202.00000000000006 4.099999999999994 203.30000000000004 3.699999999999994 205.10000000000005 3.699999999999994 L 214.40000000000006 3.699999999999994 C 216.00000000000006 3.699999999999994 216.90000000000006 4.499999999999994 216.90000000000006 6.199999999999994 C 216.90000000000006 6.699999999999994 216.80000000000007 7.199999999999994 216.70000000000007 7.799999999999994 C 216.60000000000008 8.399999999999993 216.40000000000006 9.199999999999994 216.00000000000009 10.299999999999994 L 191.9000000000001 87.6 C 191.3000000000001 89.6 190.60000000000008 90.89999999999999 189.8000000000001 91.5 C 189.00000000000009 92.1 187.7000000000001 92.5 186.00000000000009 92.5 L 177.4000000000001 92.5 C 175.50000000000009 92.5 174.2000000000001 92.2 173.4000000000001 91.5 C 172.60000000000008 90.8 171.9000000000001 89.5 171.50000000000009 87.5 L 156 23 L 140.6 87.4 C 140.1 89.4 139.5 90.7 138.7 91.4 C 137.89999999999998 92.10000000000001 136.5 92.4 134.7 92.4 z M 254.6 95.1 C 249.4 95.1 244.2 94.5 239.2 93.3 C 234.2 92.1 230.29999999999998 90.8 227.7 89.3 C 226.1 88.39999999999999 225 87.39999999999999 224.6 86.5 C 224.2 85.6 224 84.6 224 83.7 L 224 78.60000000000001 C 224 76.50000000000001 224.8 75.50000000000001 226.3 75.50000000000001 C 226.9 75.50000000000001 227.5 75.60000000000001 228.10000000000002 75.80000000000001 C 228.70000000000002 76.00000000000001 229.60000000000002 76.4 230.60000000000002 76.80000000000001 C 234.00000000000003 78.30000000000001 237.70000000000002 79.50000000000001 241.60000000000002 80.30000000000001 C 245.60000000000002 81.10000000000001 249.50000000000003 81.50000000000001 253.50000000000003 81.50000000000001 C 259.8 81.50000000000001 264.70000000000005 80.40000000000002 268.1 78.20000000000002 C 271.5 76.00000000000001 273.3 72.80000000000001 273.3 68.70000000000002 C 273.3 65.90000000000002 272.40000000000003 63.600000000000016 270.6 61.70000000000002 C 268.8 59.80000000000002 265.40000000000003 58.100000000000016 260.5 56.500000000000014 L 246 52 C 238.7 49.7 233.3 46.3 230 41.8 C 226.7 37.4 225 32.5 225 27.299999999999997 C 225 23.099999999999998 225.9 19.4 227.7 16.199999999999996 C 229.5 12.999999999999996 231.89999999999998 10.199999999999996 234.89999999999998 7.9999999999999964 C 237.89999999999998 5.699999999999997 241.29999999999998 3.9999999999999964 245.29999999999998 2.7999999999999963 C 249.29999999999998 1.5999999999999963 253.49999999999997 1.0999999999999963 257.9 1.0999999999999963 C 260.09999999999997 1.0999999999999963 262.4 1.1999999999999964 264.59999999999997 1.4999999999999964 C 266.9 1.7999999999999965 268.99999999999994 2.1999999999999966 271.09999999999997 2.5999999999999965 C 273.09999999999997 3.0999999999999965 274.99999999999994 3.5999999999999965 276.79999999999995 4.199999999999997 C 278.59999999999997 4.799999999999996 279.99999999999994 5.399999999999997 280.99999999999994 5.9999999999999964 C 282.3999999999999 6.799999999999996 283.3999999999999 7.599999999999996 283.99999999999994 8.499999999999996 C 284.59999999999997 9.299999999999997 284.8999999999999 10.399999999999997 284.8999999999999 11.799999999999997 L 284.8999999999999 16.499999999999996 C 284.8999999999999 18.599999999999998 284.0999999999999 19.699999999999996 282.5999999999999 19.699999999999996 C 281.7999999999999 19.699999999999996 280.4999999999999 19.299999999999997 278.7999999999999 18.499999999999996 C 273.0999999999999 15.899999999999997 266.6999999999999 14.599999999999996 259.5999999999999 14.599999999999996 C 253.89999999999992 14.599999999999996 249.39999999999992 15.499999999999996 246.2999999999999 17.399999999999995 C 243.1999999999999 19.299999999999994 241.5999999999999 22.199999999999996 241.5999999999999 26.299999999999997 C 241.5999999999999 29.099999999999998 242.5999999999999 31.499999999999996 244.5999999999999 33.4 C 246.5999999999999 35.3 250.2999999999999 37.199999999999996 255.5999999999999 38.9 L 269.7999999999999 43.4 C 276.9999999999999 45.699999999999996 282.1999999999999 48.9 285.2999999999999 53 C 288.3999999999999 57.1 289.8999999999999 61.8 289.8999999999999 67 C 289.8999999999999 71.3 288.99999999999994 75.2 287.2999999999999 78.6 C 285.4999999999999 82 283.0999999999999 85 279.9999999999999 87.39999999999999 C 276.89999999999986 89.89999999999999 273.1999999999999 91.69999999999999 268.89999999999986 92.99999999999999 C 264.39999999999986 94.39999999999999 259.6999999999999 95.09999999999998 254.59999999999985 95.09999999999998 z\" stroke-linecap=\"round\"></path></g>		<g transform=\"matrix(2.97 0 0 2.97 -38.71 175.19)\"><path style=\"stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,153,0); fill-rule: evenodd; opacity: 1;\" transform=\" translate(-138.78, -150.02)\" d=\"M 273.5 143.7 C 240.6 168 192.8 180.89999999999998 151.7 180.89999999999998 C 94.1 180.89999999999998 42.19999999999999 159.59999999999997 3 124.19999999999997 C -0.10000000000000009 121.39999999999998 2.7 117.59999999999998 6.4 119.79999999999997 C 48.8 144.39999999999998 101.10000000000001 159.29999999999995 155.20000000000002 159.29999999999995 C 191.70000000000002 159.29999999999995 231.8 151.69999999999996 268.70000000000005 136.09999999999997 C 274.20000000000005 133.59999999999997 278.90000000000003 139.69999999999996 273.50000000000006 143.69999999999996 z\" stroke-linecap=\"round\"></path></g>		<g transform=\"matrix(2.97 0 0 2.97 362.46 148.26)\"><path style=\"stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,153,0); fill-rule: evenodd; opacity: 1;\" transform=\" translate(-274.16, -140.95)\" d=\"M 287.2 128.1 C 283 122.69999999999999 259.4 125.5 248.7 126.8 C 245.5 127.2 245 124.39999999999999 247.89999999999998 122.3 C 266.7 109.1 297.59999999999997 112.89999999999999 301.2 117.3 C 304.8 121.8 300.2 152.7 282.59999999999997 167.5 C 279.9 169.8 277.29999999999995 168.6 278.49999999999994 165.6 C 282.49999999999994 155.7 291.3999999999999 133.39999999999998 287.19999999999993 128.1 z\" stroke-linecap=\"round\"></path></g></g></g></svg>'),(12705,7380,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"800\" width=\"1200\" viewBox=\"-90.585 -32.25 785.07 193.5\"><path fill=\"#737373\" d=\"M213.2 74.3l-3.6 10.2h-.3c-.6-2.3-1.7-5.8-3.5-10L186.5 26h-18.9v77.3h12.5V55.6c0-3 0-6.4-.1-10.6-.1-2.1-.3-3.7-.4-4.9h.3c.6 3 1.3 5.2 1.8 6.6l23.2 56.4h8.8l23-56.9c.5-1.3 1-3.9 1.5-6.1h.3c-.3 5.7-.5 10.8-.6 13.9v49h13.3V25.8H233zm50.6-26.7h13V103h-13zm6.6-23.4c-2.2 0-4 .8-5.5 2.2-1.5 1.4-2.3 3.2-2.3 5.4 0 2.1.8 3.9 2.3 5.3 1.5 1.4 3.3 2.1 5.5 2.1s4.1-.8 5.5-2.1c1.5-1.4 2.3-3.2 2.3-5.3 0-2.1-.8-3.9-2.3-5.4-1.3-1.4-3.2-2.2-5.5-2.2m52.5 22.9c-2.4-.5-4.9-.8-7.3-.8-5.9 0-11.3 1.3-15.8 3.9-4.5 2.6-8.1 6.2-10.4 10.7-2.4 4.6-3.6 9.9-3.6 16 0 5.3 1.2 10 3.5 14.3 2.3 4.2 5.5 7.6 9.8 9.9 4.1 2.3 8.9 3.5 14.3 3.5 6.2 0 11.5-1.3 15.7-3.7l.1-.1v-12l-.5.4c-1.9 1.4-4.1 2.6-6.3 3.3-2.3.8-4.4 1.2-6.2 1.2-5.2 0-9.3-1.5-12.2-4.8-3-3.2-4.5-7.6-4.5-13.1 0-5.7 1.5-10.2 4.6-13.5 3.1-3.3 7.2-5 12.2-5 4.2 0 8.5 1.4 12.4 4.2l.5.4V49.2l-.1-.1c-1.7-.7-3.6-1.5-6.2-2m42.9-.4c-3.2 0-6.2 1-8.8 3.1-2.2 1.8-3.7 4.4-5 7.5h-.1v-9.7h-13V103h13V74.7c0-4.8 1-8.8 3.2-11.7 2.2-3 5-4.5 8.4-4.5 1.2 0 2.4.3 3.9.5 1.4.4 2.4.8 3.1 1.3l.5.4v-13l-.3-.1c-.9-.6-2.7-.9-4.9-.9m35.4-.3c-9.1 0-16.4 2.7-21.5 8-5.2 5.3-7.7 12.6-7.7 21.8 0 8.6 2.6 15.6 7.6 20.7 5 5 11.8 7.6 20.3 7.6 8.9 0 16-2.7 21.1-8.1 5.2-5.4 7.7-12.6 7.7-21.5 0-8.8-2.4-15.8-7.3-20.9-4.7-5.1-11.6-7.6-20.2-7.6M411.6 89c-2.4 3.1-6.2 4.6-10.9 4.6s-8.5-1.5-11.2-4.8c-2.7-3.1-4-7.6-4-13.3 0-5.9 1.4-10.4 4-13.6 2.7-3.2 6.4-4.8 11.1-4.8 4.6 0 8.2 1.5 10.8 4.6 2.6 3.1 4 7.6 4 13.5-.2 6-1.3 10.7-3.8 13.8m46.1-18.4c-4.1-1.7-6.7-3-7.9-4.1-1-1-1.5-2.4-1.5-4.2 0-1.5.6-3 2.1-4s3.2-1.5 5.7-1.5c2.2 0 4.5.4 6.7 1s4.2 1.5 5.8 2.7l.5.4V48.7l-.3-.1c-1.5-.6-3.5-1.2-5.9-1.7-2.4-.4-4.6-.6-6.4-.6-6.2 0-11.3 1.5-15.3 4.8-4 3.1-5.9 7.3-5.9 12.2 0 2.6.4 4.9 1.3 6.8.9 1.9 2.2 3.7 4 5.2 1.8 1.4 4.4 3 8 4.5 3 1.3 5.3 2.3 6.7 3.1 1.4.8 2.3 1.7 3 2.4.5.8.8 1.8.8 3.1 0 3.7-2.8 5.5-8.5 5.5-2.2 0-4.5-.4-7.2-1.3s-5.2-2.2-7.3-3.7l-.5-.4v12.7l.3.1c1.9.9 4.2 1.5 7 2.2 2.8.5 5.3.9 7.5.9 6.7 0 12.2-1.5 16.1-4.8 4-3.2 6.1-7.3 6.1-12.6 0-3.7-1-7-3.2-9.5-2.9-2.4-6.5-4.9-11.7-6.9m49.2-24.2c-9.1 0-16.4 2.7-21.5 8-5.1 5.3-7.7 12.6-7.7 21.8 0 8.6 2.6 15.6 7.6 20.7 5 5 11.8 7.6 20.3 7.6 8.9 0 16-2.7 21.1-8.1 5.2-5.4 7.7-12.6 7.7-21.5 0-8.8-2.4-15.8-7.3-20.9-4.7-5.1-11.6-7.6-20.2-7.6M517.2 89c-2.4 3.1-6.2 4.6-10.9 4.6-4.8 0-8.5-1.5-11.2-4.8-2.7-3.1-4-7.6-4-13.3 0-5.9 1.4-10.4 4-13.6 2.7-3.2 6.4-4.8 11.1-4.8 4.5 0 8.2 1.5 10.8 4.6 2.6 3.1 4 7.6 4 13.5 0 6-1.3 10.7-3.8 13.8m86.7-30.7V47.6h-13.1V31.2l-.4.1L578 35l-.3.1v12.5h-19.6v-7c0-3.2.8-5.7 2.2-7.3 1.4-1.6 3.5-2.4 6.1-2.4 1.8 0 3.7.4 5.8 1.3l.5.3V21.2l-.3-.1c-1.8-.6-4.2-1-7.3-1-3.9 0-7.3.9-10.4 2.4-3.1 1.7-5.4 4-7.1 7.1-1.7 3-2.6 6.4-2.6 10.3v7.7h-9.1v10.6h9.1V103h13.1V58.3h19.6v28.5c0 11.7 5.5 17.6 16.5 17.6 1.8 0 3.7-.3 5.5-.6 1.9-.4 3.3-.9 4.1-1.3l.1-.1V91.7l-.5.4c-.8.5-1.5.9-2.7 1.2-1 .3-1.9.4-2.6.4-2.6 0-4.4-.6-5.7-2.1-1.2-1.4-1.8-3.7-1.8-7.1V58.3z\"></path><path d=\"M0 0h61.3v61.3H0z\" fill=\"#F25022\"></path><path d=\"M67.7 0H129v61.3H67.7z\" fill=\"#7FBA00\"></path><path d=\"M0 67.7h61.3V129H0z\" fill=\"#00A4EF\"></path><path d=\"M67.7 67.7H129V129H67.7z\" fill=\"#FFB900\"></path></svg>'),(12706,7372,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"layer\" x=\"0px\" y=\"0px\" viewBox=\"0 0 652 652\" style=\"enable-background:new 0 0 652 652;\" xml:space=\"preserve\"><style type=\"text/css\">	.st0{fill:#440099;}</style><g>	<path class=\"st0\" d=\"M20.5,261.5v96.8L44.7,334v-48.3h89v-24.2H20.5z\"></path>	<path class=\"st0\" d=\"M68.9,309.8h48.8V334H68.9V309.8z\"></path>	<path class=\"st0\" d=\"M20.5,358.2l24.2,24.3h89v-24.3H20.5z\"></path>	<path class=\"st0\" d=\"M182.2,285.7h52.5v7.5h-44.3v24.8H230v7.5h-39.6v25.4h44.8v7.5h-53L182.2,285.7z\"></path>	<path class=\"st0\" d=\"M266.6,331l-20.3-26.4h9.2l15.9,20.8l15.9-20.8h8.9l-20.4,26.1l21.2,27.5h-9.3l-16.6-21.9l-16.6,21.9h-8.9  L266.6,331z\"></path>	<path class=\"st0\" d=\"M312.8,344v-32.4h-7.5v-7h7.5v-16.1h8v16.2h17.1v7h-17.1V343c0,6.5,3.7,8.9,9,8.9c2.7,0,5-0.5,7.8-1.9v6.9  c-2.8,1.4-5.9,2.3-9.7,2.3C319.3,359.1,312.8,354.9,312.8,344\"></path>	<path class=\"st0\" d=\"M351.9,304.6h8v14c4-8.9,11.7-15.4,21.9-14.9v8.6h-0.6c-11.7,0-21.3,8.4-21.3,24.6v21.4h-8V304.6z\"></path>	<path class=\"st0\" d=\"M430.9,328.2c-0.9-9.8-6.5-18.1-17.1-18.1c-9.3,0-16.3,7.6-17.4,18.1H430.9L430.9,328.2z M415.3,352.5  c7.4,0,12.6-3,16.9-7.5l5,4.5c-5.4,6-12,10.1-22.1,10.1c-14.8,0-26.7-11.3-26.7-28c0-15.5,10.9-28,25.7-28c15.9,0,25,12.6,25,28.4  c0,0.8,0,1.5-0.1,2.8h-42.5C397.6,346,405.8,352.5,415.3,352.5L415.3,352.5z\"></path>	<path class=\"st0\" d=\"M453.1,304.6h8v9c3.5-5.3,8.3-10.2,17.3-10.2c8.7,0,14.3,4.7,17.2,10.7c3.8-5.9,9.5-10.7,18.8-10.7  c12.3,0,19.9,8.3,19.9,21.5v33.2h-8v-31.3c0-10.3-5.2-16.2-13.9-16.2c-8.1,0-14.9,6-14.9,16.6v30.9h-7.9v-31.6  c0-10.1-5.3-15.9-13.8-15.9c-8.5,0-14.9,7-14.9,16.9v30.5h-8L453.1,304.6L453.1,304.6z\"></path>	<path class=\"st0\" d=\"M590.6,328.2c-0.9-9.8-6.5-18.1-17.1-18.1c-9.3,0-16.3,7.6-17.4,18.1C556,328.2,590.6,328.2,590.6,328.2z   M574.9,352.5c7.4,0,12.6-3,16.9-7.5l5,4.5c-5.4,6-12,10.1-22.1,10.1c-14.7,0-26.7-11.3-26.7-28c0-15.5,10.9-28,25.7-28  c15.9,0,25,12.6,25,28.4c0,0.8,0,1.5-0.1,2.8h-42.5C557.1,346,565.5,352.5,574.9,352.5L574.9,352.5z\"></path>	<path class=\"st0\" d=\"M604.4,298.9h-3.1v-1.6h7.8v1.6h-3.1v8.1h-1.7V298.9z\"></path>	<path class=\"st0\" d=\"M611,297.3h1.8l3,4.6l3-4.6h1.8v9.7h-1.7v-7l-3.1,4.6h-0.1l-3.1-4.5v6.9h-1.7L611,297.3L611,297.3z\"></path></g></svg>'),(12707,7371,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"800\" width=\"1200\" fill=\"#049fd9\" viewBox=\"-32.4 -28.46125 280.8 170.7675\"><path d=\"M106.48 76.164c-.282-.077-4.621-1.196-9.232-1.196-8.73 0-13.986 4.714-13.986 11.734 0 6.214 4.397 9.313 9.674 10.98.585.193 1.447.463 2.021.653 2.349.739 4.224 1.837 4.224 3.739 0 2.127-2.167 3.504-6.878 3.504-4.14 0-8.109-1.184-8.945-1.395v8.637c.466.099 5.183 1.025 10.222 1.025 7.248 0 15.539-3.167 15.539-12.595 0-4.573-2.8-8.783-8.947-10.737l-2.613-.832c-1.559-.492-4.342-1.289-4.342-3.574 0-1.805 2.062-3.076 5.859-3.076 3.276 0 7.263 1.101 7.404 1.145zm80.041 18.243c0 5.461-4.183 9.879-9.796 9.879-5.619 0-9.791-4.418-9.791-9.879 0-5.45 4.172-9.87 9.791-9.87 5.613 0 9.796 4.42 9.796 9.87m-9.796-19.427c-11.544 0-19.823 8.707-19.823 19.427 0 10.737 8.279 19.438 19.823 19.438 11.543 0 19.834-8.701 19.834-19.438 0-10.72-8.291-19.427-19.834-19.427M70.561 113.177h-9.472V75.645h9.472\"></path><path id=\"a\" d=\"M48.07 76.325c-.89-.264-4.18-1.345-8.636-1.345-11.526 0-19.987 8.218-19.987 19.427 0 12.093 9.34 19.438 19.987 19.438 4.23 0 7.459-1.002 8.636-1.336v-10.075c-.407.226-3.503 1.992-7.957 1.992-6.31 0-10.38-4.441-10.38-10.019 0-5.748 4.246-10.011 10.38-10.011 4.53 0 7.576 1.805 7.957 2.004\"></path><use height=\"100%\" width=\"100%\" transform=\"translate(98.86)\" xlink:href=\"#a\"></use><g transform=\"translate(0 -.074)\" id=\"c\"><path id=\"b\" d=\"M61.061 4.759c0-2.587-2.113-4.685-4.703-4.685-2.589 0-4.702 2.098-4.702 4.685v49.84a4.701 4.701 0 004.702 4.699 4.701 4.701 0 004.703-4.699zM35.232 22.451c0-2.586-2.112-4.687-4.702-4.687s-4.702 2.101-4.702 4.687v22.785a4.701 4.701 0 004.702 4.699 4.701 4.701 0 004.702-4.699zM9.404 35.383c0-2.587-2.112-4.684-4.702-4.684C2.115 30.699 0 32.796 0 35.383v9.853a4.703 4.703 0 009.404 0\"></path><use height=\"100%\" width=\"100%\" transform=\"matrix(-1 0 0 1 112.717 0)\" xlink:href=\"#b\"></use></g><use height=\"100%\" width=\"100%\" transform=\"matrix(-1 0 0 1 216 0)\" xlink:href=\"#c\"></use></svg>'),(12708,7369,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"layer\" x=\"0px\" y=\"0px\" viewBox=\"0 0 652 652\" style=\"enable-background:new 0 0 652 652;\" xml:space=\"preserve\"><style type=\"text/css\">	.st0{fill:#5D5C5E;}	.st1{fill:#0071A4;}	.st2{fill:#0A86B6;}	.st3{fill:#44C8F5;}	.st4{fill:#3CB4E7;}	.st5{fill:#389ECB;}</style><g>	<path class=\"st0\" d=\"M231.9,343.6c13.8,0,23.1-9.3,23.1-22.9v-0.2c0-13.6-9.3-23.1-23.1-23.1h-13v46.2H231.9z M202.1,282.2h29.9  c24.1,0,40.7,16.5,40.7,38.1v0.2c0,21.6-16.6,38.3-40.7,38.3h-29.9V282.2z\"></path>	<rect x=\"279.8\" y=\"300.2\" class=\"st0\" width=\"16.6\" height=\"58.7\"></rect>	<path class=\"st0\" d=\"M340.7,338.2v-3c-2.8-1.3-6.6-2.2-10.6-2.2c-7.1,0-11.5,2.8-11.5,8.1v0.2c0,4.5,3.7,7.1,9.1,7.1  C335.4,348.4,340.7,344.2,340.7,338.2 M302.5,342v-0.2c0-12.8,9.7-18.7,23.6-18.7c5.9,0,10.2,1,14.3,2.4v-1  c0-6.9-4.3-10.7-12.6-10.7c-6.3,0-10.8,1.2-16.2,3.2l-4.2-12.7c6.5-2.8,12.8-4.7,22.8-4.7c9.1,0,15.6,2.4,19.8,6.6  c4.4,4.4,6.3,10.8,6.3,18.7v34h-16.1v-6.3c-4,4.5-9.6,7.4-17.7,7.4C311.6,359.9,302.5,353.6,302.5,342\"></path>	<rect x=\"366\" y=\"279\" class=\"st0\" width=\"16.6\" height=\"79.9\"></rect>	<path class=\"st0\" d=\"M436.4,329.8v-0.2c0-8.6-6.2-16.2-15.4-16.2c-9.5,0-15.2,7.3-15.2,16v0.2c0,8.6,6.2,16.2,15.4,16.2  C430.7,345.8,436.4,338.5,436.4,329.8 M389.3,329.8v-0.2c0-16.9,13.6-30.5,31.8-30.5c18.2,0,31.6,13.5,31.6,30.3v0.2  c0,16.9-13.6,30.5-31.8,30.5C402.8,360.2,389.3,346.7,389.3,329.8\"></path>	<path class=\"st0\" d=\"M502.3,326.7v-0.2c0-8-6.2-13.6-14.3-13.6c-8.1,0-14.2,5.6-14.2,13.6v0.2c0,8.1,6.1,13.6,14.2,13.6  C496.1,340.2,502.3,334.7,502.3,326.7 M460.1,370.4l5.7-12.5c6,3.4,12,5.4,19.8,5.4c11.4,0,16.7-5.5,16.7-16v-2.8  c-4.9,5.9-10.3,9.5-19.1,9.5c-13.7,0-26-10-26-27.4v-0.2c0-17.5,12.6-27.4,26-27.4c9.1,0,14.4,3.8,18.9,8.8v-7.7h16.6v45.4  c0,10.5-2.5,18.2-7.4,23.1c-5.5,5.5-13.9,7.9-25.3,7.9C476.5,376.6,467.5,374.4,460.1,370.4\"></path>	<rect x=\"528.6\" y=\"300.2\" class=\"st0\" width=\"16.6\" height=\"58.7\"></rect>	<path class=\"st0\" d=\"M553,329.8v-0.2c0-16.7,12.8-30.5,30.7-30.5c11.1,0,17.9,3.7,23.4,9.8L597,319.9c-3.7-3.9-7.4-6.5-13.3-6.5  c-8.3,0-14.2,7.3-14.2,16v0.2c0,9,5.8,16.2,14.9,16.2c5.6,0,9.4-2.4,13.5-6.2l9.7,9.8c-5.7,6.2-12.3,10.7-24,10.7  C566,360.2,553,346.6,553,329.8\"></path>	<path class=\"st1\" d=\"M158.3,320.5c0,5.8-4.4,11.8-9.9,11.8c-5.5,0-9.9-6-9.9-11.8c0-5.8,4.4-11.8,9.9-11.8  C153.9,308.7,158.3,314.7,158.3,320.5\"></path>	<path class=\"st2\" d=\"M127.2,312.8c2.7-3.6,4.4-8.7,4.4-12.6c0-7-5.3-12.6-11.9-12.6c-6.6,0-11.9,5.7-11.9,12.6  c0,4,1.7,9.1,4.4,12.7c0,0,5.6,7.3,0,15.3c-2.7,3.6-4.4,8.7-4.4,12.7c0,7,5.3,12.6,11.9,12.6c6.6,0,11.9-5.7,11.9-12.6  c0-4-1.7-9-4.4-12.6C127.2,328.2,121.4,321.1,127.2,312.8\"></path>	<path class=\"st3\" d=\"M20.8,320.5c0,5.8,4.4,11.8,9.9,11.8c5.5,0,9.9-6,9.9-11.8c0-5.8-4.4-11.8-9.9-11.8  C25.2,308.7,20.8,314.7,20.8,320.5\"></path>	<path class=\"st4\" d=\"M51.9,312.8c-2.7-3.6-4.4-8.7-4.4-12.6c0-7,5.3-12.6,11.9-12.6s11.9,5.7,11.9,12.6c0,4-1.7,9.1-4.4,12.7  c0,0-5.6,7.3,0,15.3c2.7,3.6,4.4,8.7,4.4,12.7c0,7-5.3,12.6-11.9,12.6s-11.9-5.7-11.9-12.6c0-4,1.7-9,4.4-12.6  C51.9,328.2,57.8,321.1,51.9,312.8\"></path>	<path class=\"st5\" d=\"M78.2,321.8c0-0.4-0.1-0.9-0.1-1.4c0-0.5,0-0.9,0.1-1.4c0.3-3.7,1.9-8.1,4.3-11.3c0,0,5.8-7.1,0-15.4  c-2.7-3.6-4.4-8.7-4.4-12.6c0-7,5.3-12.6,11.9-12.6c6.6,0,11.9,5.7,11.9,12.6c0,4-1.7,9.1-4.4,12.7c0,0-5.6,7.3,0,15.3  c2.4,3.2,4,7.6,4.4,11.3c0,0.4,0.1,0.9,0.1,1.4c0,0.5,0,0.9-0.1,1.4c-0.3,3.7-2,8.1-4.4,11.3c0,0-5.6,7.3,0,15.3  c2.7,3.6,4.4,8.7,4.4,12.7c0,7-5.3,12.6-11.9,12.6c-6.6,0-11.9-5.7-11.9-12.6c0-4,1.7-9,4.4-12.6c0,0,5.8-7.1,0-15.4  C80.1,329.9,78.5,325.5,78.2,321.8\"></path>	<path class=\"st0\" d=\"M614.8,354.9h0.6c0.7,0,1.2-0.2,1.2-0.8c0-0.5-0.3-0.8-1.1-0.8c-0.3,0-0.5,0-0.7,0.1V354.9z M614.7,357.8h-1.2  v-5.1c0.5-0.1,1.1-0.2,2-0.2c1,0,1.4,0.2,1.8,0.4c0.3,0.2,0.5,0.6,0.5,1.1c0,0.6-0.4,1-1.1,1.2v0.1c0.5,0.2,0.8,0.6,0.9,1.3  c0.2,0.8,0.3,1.1,0.4,1.3h-1.3c-0.2-0.2-0.3-0.7-0.4-1.3c-0.1-0.6-0.4-0.8-1.1-0.8h-0.6V357.8z M611.6,355.1c0,2.3,1.7,4.1,4,4.1  c2.3,0,3.9-1.8,3.9-4.1c0-2.3-1.7-4.1-4-4.1C613.3,351,611.6,352.8,611.6,355.1 M620.8,355.1c0,2.9-2.3,5.2-5.3,5.2  c-2.9,0-5.3-2.3-5.3-5.2c0-2.9,2.4-5.1,5.3-5.1C618.5,349.9,620.8,352.2,620.8,355.1\"></path></g></svg>'),(12709,7369,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"layer\" x=\"0px\" y=\"0px\" viewBox=\"0 0 652 652\" style=\"enable-background:new 0 0 652 652;\" xml:space=\"preserve\"><style type=\"text/css\">	.st0{fill:#5D5C5E;}	.st1{fill:#0071A4;}	.st2{fill:#0A86B6;}	.st3{fill:#44C8F5;}	.st4{fill:#3CB4E7;}	.st5{fill:#389ECB;}</style><g>	<path class=\"st0\" d=\"M231.9,343.6c13.8,0,23.1-9.3,23.1-22.9v-0.2c0-13.6-9.3-23.1-23.1-23.1h-13v46.2H231.9z M202.1,282.2h29.9  c24.1,0,40.7,16.5,40.7,38.1v0.2c0,21.6-16.6,38.3-40.7,38.3h-29.9V282.2z\"></path>	<rect x=\"279.8\" y=\"300.2\" class=\"st0\" width=\"16.6\" height=\"58.7\"></rect>	<path class=\"st0\" d=\"M340.7,338.2v-3c-2.8-1.3-6.6-2.2-10.6-2.2c-7.1,0-11.5,2.8-11.5,8.1v0.2c0,4.5,3.7,7.1,9.1,7.1  C335.4,348.4,340.7,344.2,340.7,338.2 M302.5,342v-0.2c0-12.8,9.7-18.7,23.6-18.7c5.9,0,10.2,1,14.3,2.4v-1  c0-6.9-4.3-10.7-12.6-10.7c-6.3,0-10.8,1.2-16.2,3.2l-4.2-12.7c6.5-2.8,12.8-4.7,22.8-4.7c9.1,0,15.6,2.4,19.8,6.6  c4.4,4.4,6.3,10.8,6.3,18.7v34h-16.1v-6.3c-4,4.5-9.6,7.4-17.7,7.4C311.6,359.9,302.5,353.6,302.5,342\"></path>	<rect x=\"366\" y=\"279\" class=\"st0\" width=\"16.6\" height=\"79.9\"></rect>	<path class=\"st0\" d=\"M436.4,329.8v-0.2c0-8.6-6.2-16.2-15.4-16.2c-9.5,0-15.2,7.3-15.2,16v0.2c0,8.6,6.2,16.2,15.4,16.2  C430.7,345.8,436.4,338.5,436.4,329.8 M389.3,329.8v-0.2c0-16.9,13.6-30.5,31.8-30.5c18.2,0,31.6,13.5,31.6,30.3v0.2  c0,16.9-13.6,30.5-31.8,30.5C402.8,360.2,389.3,346.7,389.3,329.8\"></path>	<path class=\"st0\" d=\"M502.3,326.7v-0.2c0-8-6.2-13.6-14.3-13.6c-8.1,0-14.2,5.6-14.2,13.6v0.2c0,8.1,6.1,13.6,14.2,13.6  C496.1,340.2,502.3,334.7,502.3,326.7 M460.1,370.4l5.7-12.5c6,3.4,12,5.4,19.8,5.4c11.4,0,16.7-5.5,16.7-16v-2.8  c-4.9,5.9-10.3,9.5-19.1,9.5c-13.7,0-26-10-26-27.4v-0.2c0-17.5,12.6-27.4,26-27.4c9.1,0,14.4,3.8,18.9,8.8v-7.7h16.6v45.4  c0,10.5-2.5,18.2-7.4,23.1c-5.5,5.5-13.9,7.9-25.3,7.9C476.5,376.6,467.5,374.4,460.1,370.4\"></path>	<rect x=\"528.6\" y=\"300.2\" class=\"st0\" width=\"16.6\" height=\"58.7\"></rect>	<path class=\"st0\" d=\"M553,329.8v-0.2c0-16.7,12.8-30.5,30.7-30.5c11.1,0,17.9,3.7,23.4,9.8L597,319.9c-3.7-3.9-7.4-6.5-13.3-6.5  c-8.3,0-14.2,7.3-14.2,16v0.2c0,9,5.8,16.2,14.9,16.2c5.6,0,9.4-2.4,13.5-6.2l9.7,9.8c-5.7,6.2-12.3,10.7-24,10.7  C566,360.2,553,346.6,553,329.8\"></path>	<path class=\"st1\" d=\"M158.3,320.5c0,5.8-4.4,11.8-9.9,11.8c-5.5,0-9.9-6-9.9-11.8c0-5.8,4.4-11.8,9.9-11.8  C153.9,308.7,158.3,314.7,158.3,320.5\"></path>	<path class=\"st2\" d=\"M127.2,312.8c2.7-3.6,4.4-8.7,4.4-12.6c0-7-5.3-12.6-11.9-12.6c-6.6,0-11.9,5.7-11.9,12.6  c0,4,1.7,9.1,4.4,12.7c0,0,5.6,7.3,0,15.3c-2.7,3.6-4.4,8.7-4.4,12.7c0,7,5.3,12.6,11.9,12.6c6.6,0,11.9-5.7,11.9-12.6  c0-4-1.7-9-4.4-12.6C127.2,328.2,121.4,321.1,127.2,312.8\"></path>	<path class=\"st3\" d=\"M20.8,320.5c0,5.8,4.4,11.8,9.9,11.8c5.5,0,9.9-6,9.9-11.8c0-5.8-4.4-11.8-9.9-11.8  C25.2,308.7,20.8,314.7,20.8,320.5\"></path>	<path class=\"st4\" d=\"M51.9,312.8c-2.7-3.6-4.4-8.7-4.4-12.6c0-7,5.3-12.6,11.9-12.6s11.9,5.7,11.9,12.6c0,4-1.7,9.1-4.4,12.7  c0,0-5.6,7.3,0,15.3c2.7,3.6,4.4,8.7,4.4,12.7c0,7-5.3,12.6-11.9,12.6s-11.9-5.7-11.9-12.6c0-4,1.7-9,4.4-12.6  C51.9,328.2,57.8,321.1,51.9,312.8\"></path>	<path class=\"st5\" d=\"M78.2,321.8c0-0.4-0.1-0.9-0.1-1.4c0-0.5,0-0.9,0.1-1.4c0.3-3.7,1.9-8.1,4.3-11.3c0,0,5.8-7.1,0-15.4  c-2.7-3.6-4.4-8.7-4.4-12.6c0-7,5.3-12.6,11.9-12.6c6.6,0,11.9,5.7,11.9,12.6c0,4-1.7,9.1-4.4,12.7c0,0-5.6,7.3,0,15.3  c2.4,3.2,4,7.6,4.4,11.3c0,0.4,0.1,0.9,0.1,1.4c0,0.5,0,0.9-0.1,1.4c-0.3,3.7-2,8.1-4.4,11.3c0,0-5.6,7.3,0,15.3  c2.7,3.6,4.4,8.7,4.4,12.7c0,7-5.3,12.6-11.9,12.6c-6.6,0-11.9-5.7-11.9-12.6c0-4,1.7-9,4.4-12.6c0,0,5.8-7.1,0-15.4  C80.1,329.9,78.5,325.5,78.2,321.8\"></path>	<path class=\"st0\" d=\"M614.8,354.9h0.6c0.7,0,1.2-0.2,1.2-0.8c0-0.5-0.3-0.8-1.1-0.8c-0.3,0-0.5,0-0.7,0.1V354.9z M614.7,357.8h-1.2  v-5.1c0.5-0.1,1.1-0.2,2-0.2c1,0,1.4,0.2,1.8,0.4c0.3,0.2,0.5,0.6,0.5,1.1c0,0.6-0.4,1-1.1,1.2v0.1c0.5,0.2,0.8,0.6,0.9,1.3  c0.2,0.8,0.3,1.1,0.4,1.3h-1.3c-0.2-0.2-0.3-0.7-0.4-1.3c-0.1-0.6-0.4-0.8-1.1-0.8h-0.6V357.8z M611.6,355.1c0,2.3,1.7,4.1,4,4.1  c2.3,0,3.9-1.8,3.9-4.1c0-2.3-1.7-4.1-4-4.1C613.3,351,611.6,352.8,611.6,355.1 M620.8,355.1c0,2.9-2.3,5.2-5.3,5.2  c-2.9,0-5.3-2.3-5.3-5.2c0-2.9,2.4-5.1,5.3-5.1C618.5,349.9,620.8,352.2,620.8,355.1\"></path></g></svg>'),(12710,7368,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 595.98 101.3\"><defs><style>      .cls-1 {        fill: url(#linear-gradient-2);      }      .cls-2 {        fill: url(#linear-gradient);      }      .cls-3 {        fill: #124680;      }    </style><linearGradient id=\"linear-gradient\" x1=\"85.05\" y1=\"44.34\" x2=\"150.59\" y2=\"62.15\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4dc2ff\"></stop><stop offset=\".17\" stop-color=\"#4dc2ff\"></stop><stop offset=\".29\" stop-color=\"#4fbcff\"></stop><stop offset=\".43\" stop-color=\"#55adff\"></stop><stop offset=\".59\" stop-color=\"#5f94ff\"></stop><stop offset=\".76\" stop-color=\"#6d71ff\"></stop><stop offset=\".93\" stop-color=\"#7f45ff\"></stop><stop offset=\"1\" stop-color=\"#8733ff\"></stop></linearGradient><linearGradient id=\"linear-gradient-2\" x1=\"34.87\" y1=\"27.97\" x2=\"90.42\" y2=\"122.21\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".42\" stop-color=\"#124680\"></stop><stop offset=\".8\" stop-color=\"#0d2540\"></stop><stop offset=\"1\" stop-color=\"#0c1725\"></stop></linearGradient></defs><path class=\"cls-3\" d=\"m294.53,72.41V10.28h-6.48v23.89c-1.13-1.07-2.42-2.03-3.87-2.88-4.7-2.76-9.83-3.52-15.2-2.9-5.37.62-10.06,2.69-13.72,6.74-4.49,4.95-5.94,10.92-5.45,17.43.39,5.22,2.23,9.87,5.92,13.67,6.71,6.91,18.79,8.62,27.6,3.84,1.82-.99,3.39-2.12,4.72-3.39v5.73h6.48Zm-6.48-22.29v.5c-.31,6.49-2.64,11.73-8.64,14.66-9.08,4.44-21.71.16-23.07-12.64-.6-5.68.71-10.81,5.1-14.68,4.87-4.28,10.61-4.99,16.58-2.85,5.78,2.08,8.83,6.54,9.77,12.51.14.86.19,1.73.26,2.5m70.14.21c-.07-.76-.12-1.7-.26-2.63-.92-6.03-3.99-10.52-9.82-12.59-6.06-2.16-11.85-1.4-16.73,3.03-4.24,3.85-5.5,8.88-4.93,14.44,1.34,13.01,14.3,17.26,23.41,12.55,5.86-3.02,8.08-8.29,8.33-14.8m6.45-.42c-.09,7.5-2.36,13.6-8.02,18.11-4.87,3.88-10.56,5.1-16.66,4.61-5.26-.42-9.93-2.29-13.75-6.02-3.93-3.85-5.89-8.64-6.29-14.06-.49-6.47.96-12.4,5.39-17.34,3.68-4.1,8.39-6.19,13.81-6.82,5.3-.61,10.36.14,15.02,2.81,6.05,3.48,9.3,8.85,10.24,15.68.16,1.14.2,2.31.26,3.03m-52.07,22.52s-4.31-.01-6.21-.01V28.76h6.22l-.02,43.67Zm-7.43-56.48c0-2.65,1.76-4.49,4.26-4.46,2.41.02,4.19,1.92,4.19,4.47,0,2.62-1.77,4.42-4.31,4.41-2.49,0-4.14-1.78-4.14-4.42m145.23,34.35c-.08-.8-.12-1.74-.27-2.67-.94-5.98-3.99-10.43-9.77-12.51-5.97-2.15-11.71-1.44-16.59,2.84-4.39,3.86-5.71,8.99-5.1,14.68,1.36,12.8,13.99,17.08,23.07,12.64,6.1-2.98,8.41-8.34,8.66-14.98m6.47-.03c-.24,8.71-3.45,15.59-11.2,19.8-8.82,4.79-20.89,3.07-27.61-3.84-3.69-3.8-5.53-8.45-5.92-13.67-.49-6.51.96-12.47,5.45-17.43,3.67-4.05,8.35-6.12,13.72-6.75,5.37-.62,10.51.14,15.2,2.9,5.94,3.48,9.14,8.81,10.07,15.56.16,1.18.2,2.38.28,3.41m-262.66.68h0c0-.06,0-.13,0-.19-.08-1.03-.12-2.24-.28-3.41-.93-6.75-4.13-12.08-10.07-15.56-4.7-2.76-9.83-3.52-15.2-2.9-5.37.62-10.06,2.69-13.72,6.75-4.49,4.95-5.94,10.91-5.45,17.43.39,5.22,2.23,9.87,5.92,13.67,6.71,6.91,18.79,8.62,27.6,3.84,1.82-.99,3.39-2.12,4.72-3.39v5.73h6.48v-21.95Zm-6.47,0h0v.16c-.31,6.49-2.64,11.73-8.64,14.66-9.08,4.44-21.71.16-23.07-12.64-.6-5.69.71-10.82,5.1-14.68,4.87-4.28,10.61-4.99,16.58-2.84,5.78,2.08,8.83,6.53,9.77,12.51.15.93.19,1.87.27,2.67,0,.05,0,.11,0,.16m317.38,21.46V10.28h-6.48v23.89c-1.13-1.07-2.42-2.03-3.87-2.88-4.7-2.76-9.83-3.52-15.2-2.9-5.37.62-10.06,2.69-13.72,6.74-4.49,4.95-5.94,10.92-5.45,17.43.39,5.22,2.23,9.87,5.92,13.67,6.71,6.91,18.79,8.62,27.6,3.84,1.82-.99,3.39-2.12,4.72-3.39v5.73h6.48Zm-6.48-22.29v.5c-.31,6.49-2.64,11.73-8.64,14.66-9.08,4.44-21.71.16-23.07-12.64-.6-5.68.71-10.81,5.1-14.68,4.87-4.28,10.61-4.99,16.58-2.85,5.78,2.08,8.83,6.54,9.77,12.51.14.86.19,1.73.26,2.5m-107.96-16.25c-9.07,0-15.56,6.66-15.56,16.31s6.49,16.39,15.56,16.39c5.74,0,10.48-2,13.56-5.66l3.74,3.83c-3.91,4.74-9.98,7.57-17.55,7.57-12.73,0-21.71-9.07-21.71-22.13s9.07-22.13,21.71-22.13c7.07,0,12.9,2.41,16.89,6.49l-3.58,4.49c-3.32-3.25-7.73-5.16-13.06-5.16m-147.48-2.52v41.68h-6.5v-5.86c-3.9,3.69-8.75,6.02-16.67,6.1-10.26,0-16.42-6.5-16.42-17.09v-24.83h6.5v23.17c0,7.83,3.85,12.91,11.43,12.91,9.09-.17,15.16-7.24,15.16-16.75v-19.33h6.5Zm303.37,16.56c-.42-8.63-6.18-14.22-14.89-14.22s-14.64,5.59-15.57,14.22h30.46Zm-30.46,5.24c1.1,8.8,7.45,14.55,16.16,14.55,5.5,0,10.32-2.03,13.79-5.67l3.64,3.81c-4.23,4.65-10.49,7.36-17.94,7.36-13.11,0-22.17-9.22-22.17-22.51s9.14-22.43,22.09-22.51c23.29.02,20.88,24.98,20.88,24.98l-36.45-.02Zm55.68-19.46c-4.92,0-8.67,1.75-8.67,5.92,0,9.92,24.51,4.84,24.51,20.59,0,8.59-7.67,12.42-16.09,12.42-6.26,0-12.67-2.17-16.84-6.17l2.5-4.75c3.75,3.5,9.42,5.59,14.59,5.59s9.33-2,9.42-6.42c.25-10.67-24.34-5.25-24.26-20.76,0-8.34,7.25-11.92,15.26-11.92,5.25,0,10.34,1.58,14,4l-2.5,5c-3.42-2.17-7.83-3.5-11.92-3.5\"></path><path class=\"cls-2\" d=\"m80.21,22s10.07-10.11,28.89-10.11c7.65,0,21.33,2.27,30.49,16.55l-14.79,10.92s-4.13-8.35-16.08-8.35c-7.94,0-15.17,4.38-16.98,11.47-3.42-13.78-11.52-20.47-11.52-20.47m22.84,49.61s-.12,4.71,1.29,10.3c1.15,4.56,3.35,8.98,3.35,8.98,0,0,22.96,1.34,32.87-17.13l-15.14-10.11s-5.97,13.39-22.37,7.95\"></path><path class=\"cls-1\" d=\"m100.56,71.08s-.12,4.96.93,10.14c.84,4.14,2.22,7.24,3.14,9.7-22.23,0-36.93-18.45-36.93-40,0-8.83-5.1-19.05-18.36-19.05-18.76,0-22.79,19-16.28,32.44,6.21,12.82,27.2,12.8,33.53-3.81,1.41,8.03,4.91,15.01,10.36,20.98-25.31,19.74-68.55,8.13-68.55-28.22,0-28.04,17.82-40.76,41.07-40.76s40.81,17.62,40.81,39.39c0,7.03,3.07,15.56,10.28,19.19\"></path></svg>'),(12711,7368,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 595.98 101.3\"><defs><style>      .cls-1 {        fill: url(#linear-gradient-2);      }      .cls-2 {        fill: url(#linear-gradient);      }      .cls-3 {        fill: #124680;      }    </style><linearGradient id=\"linear-gradient\" x1=\"85.05\" y1=\"44.34\" x2=\"150.59\" y2=\"62.15\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4dc2ff\"></stop><stop offset=\".17\" stop-color=\"#4dc2ff\"></stop><stop offset=\".29\" stop-color=\"#4fbcff\"></stop><stop offset=\".43\" stop-color=\"#55adff\"></stop><stop offset=\".59\" stop-color=\"#5f94ff\"></stop><stop offset=\".76\" stop-color=\"#6d71ff\"></stop><stop offset=\".93\" stop-color=\"#7f45ff\"></stop><stop offset=\"1\" stop-color=\"#8733ff\"></stop></linearGradient><linearGradient id=\"linear-gradient-2\" x1=\"34.87\" y1=\"27.97\" x2=\"90.42\" y2=\"122.21\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".42\" stop-color=\"#124680\"></stop><stop offset=\".8\" stop-color=\"#0d2540\"></stop><stop offset=\"1\" stop-color=\"#0c1725\"></stop></linearGradient></defs><path class=\"cls-3\" d=\"m294.53,72.41V10.28h-6.48v23.89c-1.13-1.07-2.42-2.03-3.87-2.88-4.7-2.76-9.83-3.52-15.2-2.9-5.37.62-10.06,2.69-13.72,6.74-4.49,4.95-5.94,10.92-5.45,17.43.39,5.22,2.23,9.87,5.92,13.67,6.71,6.91,18.79,8.62,27.6,3.84,1.82-.99,3.39-2.12,4.72-3.39v5.73h6.48Zm-6.48-22.29v.5c-.31,6.49-2.64,11.73-8.64,14.66-9.08,4.44-21.71.16-23.07-12.64-.6-5.68.71-10.81,5.1-14.68,4.87-4.28,10.61-4.99,16.58-2.85,5.78,2.08,8.83,6.54,9.77,12.51.14.86.19,1.73.26,2.5m70.14.21c-.07-.76-.12-1.7-.26-2.63-.92-6.03-3.99-10.52-9.82-12.59-6.06-2.16-11.85-1.4-16.73,3.03-4.24,3.85-5.5,8.88-4.93,14.44,1.34,13.01,14.3,17.26,23.41,12.55,5.86-3.02,8.08-8.29,8.33-14.8m6.45-.42c-.09,7.5-2.36,13.6-8.02,18.11-4.87,3.88-10.56,5.1-16.66,4.61-5.26-.42-9.93-2.29-13.75-6.02-3.93-3.85-5.89-8.64-6.29-14.06-.49-6.47.96-12.4,5.39-17.34,3.68-4.1,8.39-6.19,13.81-6.82,5.3-.61,10.36.14,15.02,2.81,6.05,3.48,9.3,8.85,10.24,15.68.16,1.14.2,2.31.26,3.03m-52.07,22.52s-4.31-.01-6.21-.01V28.76h6.22l-.02,43.67Zm-7.43-56.48c0-2.65,1.76-4.49,4.26-4.46,2.41.02,4.19,1.92,4.19,4.47,0,2.62-1.77,4.42-4.31,4.41-2.49,0-4.14-1.78-4.14-4.42m145.23,34.35c-.08-.8-.12-1.74-.27-2.67-.94-5.98-3.99-10.43-9.77-12.51-5.97-2.15-11.71-1.44-16.59,2.84-4.39,3.86-5.71,8.99-5.1,14.68,1.36,12.8,13.99,17.08,23.07,12.64,6.1-2.98,8.41-8.34,8.66-14.98m6.47-.03c-.24,8.71-3.45,15.59-11.2,19.8-8.82,4.79-20.89,3.07-27.61-3.84-3.69-3.8-5.53-8.45-5.92-13.67-.49-6.51.96-12.47,5.45-17.43,3.67-4.05,8.35-6.12,13.72-6.75,5.37-.62,10.51.14,15.2,2.9,5.94,3.48,9.14,8.81,10.07,15.56.16,1.18.2,2.38.28,3.41m-262.66.68h0c0-.06,0-.13,0-.19-.08-1.03-.12-2.24-.28-3.41-.93-6.75-4.13-12.08-10.07-15.56-4.7-2.76-9.83-3.52-15.2-2.9-5.37.62-10.06,2.69-13.72,6.75-4.49,4.95-5.94,10.91-5.45,17.43.39,5.22,2.23,9.87,5.92,13.67,6.71,6.91,18.79,8.62,27.6,3.84,1.82-.99,3.39-2.12,4.72-3.39v5.73h6.48v-21.95Zm-6.47,0h0v.16c-.31,6.49-2.64,11.73-8.64,14.66-9.08,4.44-21.71.16-23.07-12.64-.6-5.69.71-10.82,5.1-14.68,4.87-4.28,10.61-4.99,16.58-2.84,5.78,2.08,8.83,6.53,9.77,12.51.15.93.19,1.87.27,2.67,0,.05,0,.11,0,.16m317.38,21.46V10.28h-6.48v23.89c-1.13-1.07-2.42-2.03-3.87-2.88-4.7-2.76-9.83-3.52-15.2-2.9-5.37.62-10.06,2.69-13.72,6.74-4.49,4.95-5.94,10.92-5.45,17.43.39,5.22,2.23,9.87,5.92,13.67,6.71,6.91,18.79,8.62,27.6,3.84,1.82-.99,3.39-2.12,4.72-3.39v5.73h6.48Zm-6.48-22.29v.5c-.31,6.49-2.64,11.73-8.64,14.66-9.08,4.44-21.71.16-23.07-12.64-.6-5.68.71-10.81,5.1-14.68,4.87-4.28,10.61-4.99,16.58-2.85,5.78,2.08,8.83,6.54,9.77,12.51.14.86.19,1.73.26,2.5m-107.96-16.25c-9.07,0-15.56,6.66-15.56,16.31s6.49,16.39,15.56,16.39c5.74,0,10.48-2,13.56-5.66l3.74,3.83c-3.91,4.74-9.98,7.57-17.55,7.57-12.73,0-21.71-9.07-21.71-22.13s9.07-22.13,21.71-22.13c7.07,0,12.9,2.41,16.89,6.49l-3.58,4.49c-3.32-3.25-7.73-5.16-13.06-5.16m-147.48-2.52v41.68h-6.5v-5.86c-3.9,3.69-8.75,6.02-16.67,6.1-10.26,0-16.42-6.5-16.42-17.09v-24.83h6.5v23.17c0,7.83,3.85,12.91,11.43,12.91,9.09-.17,15.16-7.24,15.16-16.75v-19.33h6.5Zm303.37,16.56c-.42-8.63-6.18-14.22-14.89-14.22s-14.64,5.59-15.57,14.22h30.46Zm-30.46,5.24c1.1,8.8,7.45,14.55,16.16,14.55,5.5,0,10.32-2.03,13.79-5.67l3.64,3.81c-4.23,4.65-10.49,7.36-17.94,7.36-13.11,0-22.17-9.22-22.17-22.51s9.14-22.43,22.09-22.51c23.29.02,20.88,24.98,20.88,24.98l-36.45-.02Zm55.68-19.46c-4.92,0-8.67,1.75-8.67,5.92,0,9.92,24.51,4.84,24.51,20.59,0,8.59-7.67,12.42-16.09,12.42-6.26,0-12.67-2.17-16.84-6.17l2.5-4.75c3.75,3.5,9.42,5.59,14.59,5.59s9.33-2,9.42-6.42c.25-10.67-24.34-5.25-24.26-20.76,0-8.34,7.25-11.92,15.26-11.92,5.25,0,10.34,1.58,14,4l-2.5,5c-3.42-2.17-7.83-3.5-11.92-3.5\"></path><path class=\"cls-2\" d=\"m80.21,22s10.07-10.11,28.89-10.11c7.65,0,21.33,2.27,30.49,16.55l-14.79,10.92s-4.13-8.35-16.08-8.35c-7.94,0-15.17,4.38-16.98,11.47-3.42-13.78-11.52-20.47-11.52-20.47m22.84,49.61s-.12,4.71,1.29,10.3c1.15,4.56,3.35,8.98,3.35,8.98,0,0,22.96,1.34,32.87-17.13l-15.14-10.11s-5.97,13.39-22.37,7.95\"></path><path class=\"cls-1\" d=\"m100.56,71.08s-.12,4.96.93,10.14c.84,4.14,2.22,7.24,3.14,9.7-22.23,0-36.93-18.45-36.93-40,0-8.83-5.1-19.05-18.36-19.05-18.76,0-22.79,19-16.28,32.44,6.21,12.82,27.2,12.8,33.53-3.81,1.41,8.03,4.91,15.01,10.36,20.98-25.31,19.74-68.55,8.13-68.55-28.22,0-28.04,17.82-40.76,41.07-40.76s40.81,17.62,40.81,39.39c0,7.03,3.07,15.56,10.28,19.19\"></path></svg>'),(12712,7364,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"800\" width=\"1200\" viewBox=\"-12.7143 -4.762 110.1906 28.572\"><path fill-rule=\"evenodd\" fill=\"#2D8CFF\" d=\"M69.012 5.712c.324.559.43 1.195.465 1.91l.046.953v6.664l.047.954c.094 1.558 1.243 2.71 2.813 2.808l.949.047V8.575l.047-.953c.039-.707.144-1.355.473-1.918a3.806 3.806 0 016.59.012c.324.559.425 1.207.464 1.906l.047.95v6.667l.047.954c.098 1.566 1.238 2.718 2.813 2.808l.949.047V7.622a7.62 7.62 0 00-7.617-7.62 7.6 7.6 0 00-5.715 2.581A7.61 7.61 0 0065.715.001c-1.582 0-3.05.48-4.266 1.309C60.707.482 59.047.001 58.094.001v19.047l.953-.047c1.594-.105 2.746-1.226 2.808-2.808l.051-.954V8.575l.047-.953c.04-.719.14-1.351.465-1.914a3.816 3.816 0 013.297-1.898 3.81 3.81 0 013.297 1.902zM3.809 19.002l.953.046h14.285l-.047-.95c-.129-1.566-1.238-2.71-2.809-2.812l-.953-.047h-8.57l11.426-11.43-.047-.949c-.074-1.582-1.23-2.725-2.809-2.812l-.953-.043L0 .001l.047.953c.125 1.551 1.25 2.719 2.808 2.809l.954.047h8.57L.953 15.24l.047.953c.094 1.57 1.227 2.707 2.809 2.808zM54.355 2.789a9.523 9.523 0 010 13.469 9.53 9.53 0 01-13.472 0c-3.719-3.719-3.719-9.75 0-13.469A9.518 9.518 0 0147.613 0a9.525 9.525 0 016.742 2.79zM51.66 5.486a5.717 5.717 0 010 8.082 5.717 5.717 0 01-8.082 0 5.717 5.717 0 010-8.082 5.717 5.717 0 018.082 0zM27.625 0a9.518 9.518 0 016.73 2.79c3.72 3.718 3.72 9.75 0 13.468a9.53 9.53 0 01-13.472 0c-3.719-3.719-3.719-9.75 0-13.469A9.518 9.518 0 0127.613 0zm4.035 5.484a5.717 5.717 0 010 8.083 5.717 5.717 0 01-8.082 0 5.717 5.717 0 010-8.082 5.717 5.717 0 018.082 0z\"></path></svg>'),(12713,7364,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"800\" width=\"1200\" viewBox=\"-12.7143 -4.762 110.1906 28.572\"><path fill-rule=\"evenodd\" fill=\"#2D8CFF\" d=\"M69.012 5.712c.324.559.43 1.195.465 1.91l.046.953v6.664l.047.954c.094 1.558 1.243 2.71 2.813 2.808l.949.047V8.575l.047-.953c.039-.707.144-1.355.473-1.918a3.806 3.806 0 016.59.012c.324.559.425 1.207.464 1.906l.047.95v6.667l.047.954c.098 1.566 1.238 2.718 2.813 2.808l.949.047V7.622a7.62 7.62 0 00-7.617-7.62 7.6 7.6 0 00-5.715 2.581A7.61 7.61 0 0065.715.001c-1.582 0-3.05.48-4.266 1.309C60.707.482 59.047.001 58.094.001v19.047l.953-.047c1.594-.105 2.746-1.226 2.808-2.808l.051-.954V8.575l.047-.953c.04-.719.14-1.351.465-1.914a3.816 3.816 0 013.297-1.898 3.81 3.81 0 013.297 1.902zM3.809 19.002l.953.046h14.285l-.047-.95c-.129-1.566-1.238-2.71-2.809-2.812l-.953-.047h-8.57l11.426-11.43-.047-.949c-.074-1.582-1.23-2.725-2.809-2.812l-.953-.043L0 .001l.047.953c.125 1.551 1.25 2.719 2.808 2.809l.954.047h8.57L.953 15.24l.047.953c.094 1.57 1.227 2.707 2.809 2.808zM54.355 2.789a9.523 9.523 0 010 13.469 9.53 9.53 0 01-13.472 0c-3.719-3.719-3.719-9.75 0-13.469A9.518 9.518 0 0147.613 0a9.525 9.525 0 016.742 2.79zM51.66 5.486a5.717 5.717 0 010 8.082 5.717 5.717 0 01-8.082 0 5.717 5.717 0 010-8.082 5.717 5.717 0 018.082 0zM27.625 0a9.518 9.518 0 016.73 2.79c3.72 3.718 3.72 9.75 0 13.468a9.53 9.53 0 01-13.472 0c-3.719-3.719-3.719-9.75 0-13.469A9.518 9.518 0 0127.613 0zm4.035 5.484a5.717 5.717 0 010 8.083 5.717 5.717 0 01-8.082 0 5.717 5.717 0 010-8.082 5.717 5.717 0 018.082 0z\"></path></svg>'),(12714,7363,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 652 652\" style=\"enable-background:new 0 0 652 652;\" xml:space=\"preserve\"><style type=\"text/css\">	.st0{display:none;}	.st1{display:inline;}	.st2{fill:#0C0407;}	.st3{fill:#007BFF;}</style><g class=\"st0\">	<g class=\"st1\">		<path class=\"st2\" d=\"M240,670.9l1.6-0.1c0.1,0.6,0.3,1.2,0.5,1.6c0.3,0.4,0.7,0.7,1.3,1c0.6,0.3,1.2,0.4,2,0.4   c0.7,0,1.2-0.1,1.7-0.3s0.9-0.5,1.1-0.8s0.4-0.7,0.4-1.1c0-0.4-0.1-0.8-0.4-1.1s-0.6-0.6-1.2-0.8c-0.3-0.1-1.1-0.3-2.3-0.6   s-2-0.6-2.5-0.8c-0.6-0.3-1.1-0.7-1.4-1.2c-0.3-0.5-0.5-1-0.5-1.6c0-0.7,0.2-1.3,0.6-1.8s0.9-1,1.6-1.3s1.5-0.4,2.4-0.4   c1,0,1.8,0.2,2.5,0.5c0.7,0.3,1.3,0.8,1.7,1.4s0.6,1.3,0.6,2l-1.6,0.1c-0.1-0.8-0.4-1.4-0.9-1.8c-0.5-0.4-1.3-0.6-2.2-0.6   c-1,0-1.8,0.2-2.3,0.6c-0.5,0.4-0.7,0.8-0.7,1.4c0,0.5,0.2,0.8,0.5,1.1c0.3,0.3,1.2,0.6,2.6,0.9c1.4,0.3,2.3,0.6,2.9,0.8   c0.8,0.3,1.3,0.8,1.7,1.3s0.5,1.1,0.5,1.8c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1.1-1.7,1.4c-0.7,0.3-1.6,0.5-2.5,0.5   c-1.2,0-2.1-0.2-2.9-0.5c-0.8-0.3-1.4-0.9-1.9-1.5C240.3,672.6,240,671.8,240,670.9z\"></path>		<path class=\"st2\" d=\"M258.8,672.1l1.6,0.2c-0.3,1-0.7,1.7-1.4,2.2s-1.6,0.8-2.7,0.8c-1.4,0-2.4-0.4-3.2-1.3   c-0.8-0.8-1.2-2-1.2-3.5c0-1.6,0.4-2.8,1.2-3.7s1.9-1.3,3.1-1.3c1.2,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.6c0,0.1,0,0.2,0,0.4h-7   c0.1,1,0.3,1.8,0.9,2.4s1.2,0.8,2,0.8c0.6,0,1.1-0.2,1.5-0.5S258.6,672.7,258.8,672.1z M253.6,669.5h5.2c-0.1-0.8-0.3-1.4-0.6-1.8   c-0.5-0.6-1.2-0.9-2-0.9c-0.7,0-1.3,0.2-1.8,0.7S253.6,668.7,253.6,669.5z\"></path>		<path class=\"st2\" d=\"M268.8,672.1l1.6,0.2c-0.3,1-0.7,1.7-1.4,2.2s-1.6,0.8-2.7,0.8c-1.4,0-2.4-0.4-3.2-1.3   c-0.8-0.8-1.2-2-1.2-3.5c0-1.6,0.4-2.8,1.2-3.7s1.9-1.3,3.1-1.3c1.2,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.6c0,0.1,0,0.2,0,0.4h-7   c0.1,1,0.3,1.8,0.9,2.4s1.2,0.8,2,0.8c0.6,0,1.1-0.2,1.5-0.5S268.6,672.7,268.8,672.1z M263.6,669.5h5.2c-0.1-0.8-0.3-1.4-0.6-1.8   c-0.5-0.6-1.2-0.9-2-0.9c-0.7,0-1.3,0.2-1.8,0.7S263.7,668.7,263.6,669.5z\"></path>		<path class=\"st2\" d=\"M272.4,675.1v-12.9h1.6v7.3l3.7-3.8h2l-3.6,3.5l3.9,5.9h-2l-3.1-4.8l-1.1,1.1v3.7H272.4z\"></path>		<path class=\"st2\" d=\"M285.3,675.1l-5-12.9h1.8l3.3,9.4c0.3,0.8,0.5,1.5,0.7,2.1c0.2-0.7,0.4-1.4,0.7-2.1l3.5-9.4h1.7l-5,12.9   H285.3z\"></path>		<path class=\"st2\" d=\"M298.8,672.1l1.6,0.2c-0.3,1-0.7,1.7-1.4,2.2s-1.6,0.8-2.7,0.8c-1.4,0-2.4-0.4-3.2-1.3   c-0.8-0.8-1.2-2-1.2-3.5c0-1.6,0.4-2.8,1.2-3.7s1.9-1.3,3.1-1.3c1.2,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.6c0,0.1,0,0.2,0,0.4h-7   c0.1,1,0.3,1.8,0.9,2.4s1.2,0.8,2,0.8c0.6,0,1.1-0.2,1.5-0.5S298.6,672.7,298.8,672.1z M293.6,669.5h5.2c-0.1-0.8-0.3-1.4-0.6-1.8   c-0.5-0.6-1.2-0.9-2-0.9c-0.7,0-1.3,0.2-1.8,0.7S293.7,668.7,293.6,669.5z\"></path>		<path class=\"st2\" d=\"M308.5,671.7l1.6,0.2c-0.2,1.1-0.6,1.9-1.3,2.5c-0.7,0.6-1.6,0.9-2.6,0.9c-1.3,0-2.3-0.4-3.1-1.3   c-0.8-0.8-1.2-2-1.2-3.6c0-1,0.2-1.9,0.5-2.6s0.8-1.3,1.5-1.7c0.7-0.4,1.4-0.6,2.2-0.6c1,0,1.8,0.3,2.5,0.8s1.1,1.2,1.2,2.2   l-1.5,0.2c-0.1-0.6-0.4-1.1-0.8-1.4s-0.8-0.5-1.3-0.5c-0.8,0-1.4,0.3-1.9,0.9c-0.5,0.6-0.7,1.5-0.7,2.7c0,1.3,0.2,2.2,0.7,2.7   s1.1,0.9,1.9,0.9c0.6,0,1.1-0.2,1.6-0.6S308.4,672.4,308.5,671.7z\"></path>		<path class=\"st2\" d=\"M314.9,673.7l0.2,1.4c-0.4,0.1-0.8,0.1-1.2,0.1c-0.6,0-1-0.1-1.3-0.3s-0.5-0.4-0.7-0.7s-0.2-0.9-0.2-1.9V667   h-1.2v-1.2h1.2v-2.3l1.6-0.9v3.3h1.6v1.2h-1.6v5.5c0,0.5,0,0.7,0.1,0.9s0.1,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.5,0.1   C314.4,673.7,314.6,673.7,314.9,673.7z\"></path>		<path class=\"st2\" d=\"M315.9,670.4c0-1.7,0.5-3,1.4-3.8c0.8-0.7,1.8-1,2.9-1c1.3,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.5   c0,1.2-0.2,2.1-0.5,2.8c-0.4,0.7-0.9,1.2-1.6,1.6s-1.4,0.6-2.3,0.6c-1.3,0-2.4-0.4-3.2-1.3C316.3,673.2,315.9,672,315.9,670.4z    M317.5,670.4c0,1.2,0.3,2.1,0.8,2.7c0.5,0.6,1.2,0.9,2,0.9c0.8,0,1.4-0.3,2-0.9s0.8-1.5,0.8-2.7c0-1.2-0.3-2-0.8-2.6   c-0.5-0.6-1.2-0.9-2-0.9c-0.8,0-1.4,0.3-2,0.9S317.5,669.2,317.5,670.4z\"></path>		<path class=\"st2\" d=\"M326.4,675.1v-9.3h1.4v1.4c0.4-0.7,0.7-1.1,1-1.3c0.3-0.2,0.6-0.3,1-0.3c0.5,0,1.1,0.2,1.6,0.5l-0.5,1.5   c-0.4-0.2-0.8-0.3-1.2-0.3c-0.3,0-0.7,0.1-0.9,0.3s-0.5,0.5-0.6,0.9c-0.2,0.6-0.3,1.2-0.3,1.8v4.9H326.4z\"></path>		<path class=\"st2\" d=\"M332.6,675.1v-12.9h1.7v11.4h6.3v1.5H332.6z\"></path>		<path class=\"st2\" d=\"M341.9,670.4c0-1.7,0.5-3,1.4-3.8c0.8-0.7,1.8-1,2.9-1c1.3,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.5   c0,1.2-0.2,2.1-0.5,2.8c-0.4,0.7-0.9,1.2-1.6,1.6s-1.4,0.6-2.3,0.6c-1.3,0-2.4-0.4-3.2-1.3C342.3,673.2,341.9,672,341.9,670.4z    M343.5,670.4c0,1.2,0.3,2.1,0.8,2.7c0.5,0.6,1.2,0.9,2,0.9c0.8,0,1.4-0.3,2-0.9s0.8-1.5,0.8-2.7c0-1.2-0.3-2-0.8-2.6   c-0.5-0.6-1.2-0.9-2-0.9c-0.8,0-1.4,0.3-2,0.9S343.5,669.2,343.5,670.4z\"></path>		<path class=\"st2\" d=\"M352.2,675.8l1.5,0.2c0.1,0.5,0.2,0.8,0.5,1c0.4,0.3,0.9,0.4,1.6,0.4c0.7,0,1.3-0.1,1.7-0.4s0.7-0.7,0.8-1.2   c0.1-0.3,0.1-1,0.1-2c-0.7,0.8-1.6,1.2-2.6,1.2c-1.3,0-2.3-0.5-3-1.4s-1.1-2-1.1-3.3c0-0.9,0.2-1.7,0.5-2.5   c0.3-0.8,0.8-1.3,1.4-1.7s1.3-0.6,2.2-0.6c1.1,0,2,0.4,2.7,1.3v-1.1h1.5v8.1c0,1.5-0.1,2.5-0.4,3.1c-0.3,0.6-0.8,1.1-1.4,1.4   c-0.6,0.4-1.4,0.5-2.4,0.5c-1.1,0-2-0.3-2.7-0.8C352.5,677.6,352.2,676.9,352.2,675.8z M353.5,670.2c0,1.2,0.2,2.1,0.7,2.7   s1.1,0.8,1.8,0.8c0.7,0,1.3-0.3,1.8-0.8s0.7-1.4,0.7-2.6c0-1.1-0.3-2-0.8-2.6c-0.5-0.6-1.1-0.9-1.8-0.9c-0.7,0-1.3,0.3-1.8,0.9   C353.7,668.3,353.5,669.1,353.5,670.2z\"></path>		<path class=\"st2\" d=\"M361.9,670.4c0-1.7,0.5-3,1.4-3.8c0.8-0.7,1.8-1,2.9-1c1.3,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.5   c0,1.2-0.2,2.1-0.5,2.8c-0.4,0.7-0.9,1.2-1.6,1.6s-1.4,0.6-2.3,0.6c-1.3,0-2.4-0.4-3.2-1.3C362.3,673.2,361.9,672,361.9,670.4z    M363.5,670.4c0,1.2,0.3,2.1,0.8,2.7c0.5,0.6,1.2,0.9,2,0.9c0.8,0,1.4-0.3,2-0.9s0.8-1.5,0.8-2.7c0-1.2-0.3-2-0.8-2.6   c-0.5-0.6-1.2-0.9-2-0.9c-0.8,0-1.4,0.3-2,0.9S363.5,669.2,363.5,670.4z\"></path>		<path class=\"st2\" d=\"M372.9,675.1v-1.8h1.8v1.8H372.9z\"></path>		<path class=\"st2\" d=\"M386.9,670.6l1.7,0.4c-0.4,1.4-1,2.5-1.9,3.2s-2.1,1.1-3.4,1.1c-1.4,0-2.5-0.3-3.4-0.8   c-0.9-0.6-1.5-1.4-2-2.5c-0.5-1.1-0.7-2.2-0.7-3.5c0-1.3,0.3-2.5,0.8-3.5c0.5-1,1.2-1.8,2.2-2.3c0.9-0.5,2-0.8,3.1-0.8   c1.3,0,2.4,0.3,3.3,1s1.5,1.6,1.8,2.8l-1.7,0.4c-0.3-0.9-0.7-1.6-1.3-2s-1.3-0.6-2.1-0.6c-1,0-1.8,0.2-2.5,0.7   c-0.7,0.5-1.1,1.1-1.4,1.9c-0.3,0.8-0.4,1.6-0.4,2.5c0,1.1,0.2,2.1,0.5,2.9c0.3,0.8,0.8,1.4,1.5,1.8s1.4,0.6,2.2,0.6   c1,0,1.8-0.3,2.4-0.8S386.7,671.6,386.9,670.6z\"></path>		<path class=\"st2\" d=\"M389.9,670.4c0-1.7,0.5-3,1.4-3.8c0.8-0.7,1.8-1,2.9-1c1.3,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.5   c0,1.2-0.2,2.1-0.5,2.8c-0.4,0.7-0.9,1.2-1.6,1.6s-1.4,0.6-2.3,0.6c-1.3,0-2.4-0.4-3.2-1.3C390.3,673.2,389.9,672,389.9,670.4z    M391.5,670.4c0,1.2,0.3,2.1,0.8,2.7c0.5,0.6,1.2,0.9,2,0.9c0.8,0,1.4-0.3,2-0.9s0.8-1.5,0.8-2.7c0-1.2-0.3-2-0.8-2.6   c-0.5-0.6-1.2-0.9-2-0.9c-0.8,0-1.4,0.3-2,0.9S391.5,669.2,391.5,670.4z\"></path>		<path class=\"st2\" d=\"M400.5,675.1v-9.3h1.4v1.3c0.3-0.5,0.7-0.8,1.2-1.1s1-0.4,1.7-0.4c0.7,0,1.3,0.1,1.7,0.4   c0.4,0.3,0.8,0.7,0.9,1.2c0.7-1.1,1.7-1.6,2.9-1.6c0.9,0,1.6,0.3,2.1,0.8s0.7,1.3,0.7,2.4v6.4h-1.6v-5.9c0-0.6-0.1-1.1-0.2-1.4   c-0.1-0.3-0.3-0.5-0.6-0.7s-0.6-0.3-0.9-0.3c-0.7,0-1.2,0.2-1.6,0.7c-0.4,0.4-0.7,1.1-0.7,2.1v5.4h-1.6V669c0-0.7-0.1-1.2-0.4-1.6   s-0.7-0.5-1.3-0.5c-0.4,0-0.9,0.1-1.2,0.4c-0.4,0.2-0.7,0.6-0.8,1s-0.3,1.1-0.3,2v4.8H400.5z\"></path>	</g></g><g>	<polygon class=\"st3\" points=\"15.2,272.8 42.3,272.8 68.9,343.3 69.2,343.3 96.2,272.8 121.6,272.8 77.2,380.4 58.2,380.4  \"></polygon>	<polygon class=\"st3\" points=\"147.7,272.8 220.7,272.8 220.7,294.7 171.4,294.7 171.4,314.8 218,314.8 218,336.6 171.4,336.6   171.4,358.5 223.5,358.5 223.5,380.4 147.7,380.4  \"></polygon>	<g>		<path class=\"st3\" d=\"M276.2,317.4h14c2.1,0,4.4-0.1,6.8-0.2c2.4-0.2,4.5-0.6,6.5-1.4c1.9-0.8,3.5-1.9,4.8-3.6   c1.3-1.6,1.9-3.9,1.9-6.8c0-2.7-0.6-4.9-1.7-6.5c-1.1-1.6-2.5-2.9-4.3-3.7c-1.7-0.9-3.7-1.4-5.9-1.7c-2.2-0.3-4.4-0.5-6.5-0.5   h-15.5V317.4z M252.5,272.8h41.6c5.5,0,10.7,0.5,15.6,1.6c4.9,1.1,9.2,2.8,12.9,5.3c3.7,2.5,6.6,5.8,8.8,10   c2.2,4.2,3.3,9.4,3.3,15.7c0,7.6-2,14-5.9,19.4c-3.9,5.3-9.7,8.7-17.3,10.1l27.3,45.4h-28.4l-22.5-43h-11.7v43h-23.7V272.8z\"></path>	</g>	<rect x=\"365.8\" y=\"272.8\" class=\"st3\" width=\"23.7\" height=\"107.5\"></rect>	<polygon class=\"st3\" points=\"426.2,272.8 458.4,272.8 504.1,347.6 504.5,347.6 504.5,272.8 528.2,272.8 528.2,380.4 497.2,380.4   450.2,303.8 449.9,303.8 449.9,380.4 426.2,380.4  \"></polygon>	<polygon class=\"st3\" points=\"584.5,293.8 553.8,293.8 553.8,272.8 638.9,272.8 638.9,293.8 608.2,293.8 608.2,380.4 584.5,380.4    \"></polygon>	<g>		<path class=\"st3\" d=\"M630.5,372.3h0.8c0.1,0,0.3,0,0.4,0c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.3s0.1-0.3,0.1-0.5   c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0h-0.8V372.3z M628.5,369h2.8   c0.2,0,0.5,0,0.9,0s0.7,0.1,1.1,0.3s0.7,0.4,0.9,0.8c0.3,0.3,0.4,0.8,0.4,1.5c0,0.4-0.1,0.7-0.2,1c-0.1,0.3-0.2,0.5-0.4,0.6   c-0.2,0.2-0.4,0.3-0.6,0.4c-0.2,0.1-0.4,0.1-0.7,0.2l2,3.1h-2.1l-1.8-3h-0.3v3h-2.1V369z M626,373c0,0.8,0.1,1.5,0.4,2.2   c0.3,0.7,0.7,1.3,1.2,1.8c0.5,0.5,1.1,0.9,1.7,1.2c0.7,0.3,1.4,0.5,2.1,0.5c0.8,0,1.5-0.2,2.1-0.5c0.7-0.3,1.2-0.7,1.7-1.2   c0.5-0.5,0.9-1.1,1.2-1.8c0.3-0.7,0.4-1.4,0.4-2.2s-0.1-1.5-0.4-2.2c-0.3-0.7-0.7-1.3-1.2-1.8c-0.5-0.5-1.1-0.9-1.7-1.2   c-0.7-0.3-1.4-0.5-2.1-0.5c-0.8,0-1.5,0.2-2.1,0.5c-0.7,0.3-1.2,0.7-1.7,1.2c-0.5,0.5-0.9,1.1-1.2,1.8   C626.1,371.5,626,372.2,626,373 M623.9,373c0-1,0.2-2,0.6-2.9c0.4-0.9,0.9-1.7,1.6-2.4c0.7-0.7,1.5-1.2,2.4-1.6   c0.9-0.4,1.9-0.6,2.9-0.6c1,0,2,0.2,2.9,0.6c0.9,0.4,1.7,0.9,2.4,1.6c0.7,0.7,1.2,1.5,1.6,2.4c0.4,0.9,0.6,1.9,0.6,2.9   c0,1-0.2,2-0.6,2.9c-0.4,0.9-0.9,1.7-1.6,2.4c-0.7,0.7-1.5,1.2-2.4,1.6c-0.9,0.4-1.9,0.6-2.9,0.6c-1,0-2-0.2-2.9-0.6   c-0.9-0.4-1.7-0.9-2.4-1.6c-0.7-0.7-1.2-1.5-1.6-2.4C624.1,375,623.9,374,623.9,373\"></path>	</g></g></svg>'),(12715,7363,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 652 652\" style=\"enable-background:new 0 0 652 652;\" xml:space=\"preserve\"><style type=\"text/css\">	.st0{display:none;}	.st1{display:inline;}	.st2{fill:#0C0407;}	.st3{fill:#007BFF;}</style><g class=\"st0\">	<g class=\"st1\">		<path class=\"st2\" d=\"M240,670.9l1.6-0.1c0.1,0.6,0.3,1.2,0.5,1.6c0.3,0.4,0.7,0.7,1.3,1c0.6,0.3,1.2,0.4,2,0.4   c0.7,0,1.2-0.1,1.7-0.3s0.9-0.5,1.1-0.8s0.4-0.7,0.4-1.1c0-0.4-0.1-0.8-0.4-1.1s-0.6-0.6-1.2-0.8c-0.3-0.1-1.1-0.3-2.3-0.6   s-2-0.6-2.5-0.8c-0.6-0.3-1.1-0.7-1.4-1.2c-0.3-0.5-0.5-1-0.5-1.6c0-0.7,0.2-1.3,0.6-1.8s0.9-1,1.6-1.3s1.5-0.4,2.4-0.4   c1,0,1.8,0.2,2.5,0.5c0.7,0.3,1.3,0.8,1.7,1.4s0.6,1.3,0.6,2l-1.6,0.1c-0.1-0.8-0.4-1.4-0.9-1.8c-0.5-0.4-1.3-0.6-2.2-0.6   c-1,0-1.8,0.2-2.3,0.6c-0.5,0.4-0.7,0.8-0.7,1.4c0,0.5,0.2,0.8,0.5,1.1c0.3,0.3,1.2,0.6,2.6,0.9c1.4,0.3,2.3,0.6,2.9,0.8   c0.8,0.3,1.3,0.8,1.7,1.3s0.5,1.1,0.5,1.8c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1.1-1.7,1.4c-0.7,0.3-1.6,0.5-2.5,0.5   c-1.2,0-2.1-0.2-2.9-0.5c-0.8-0.3-1.4-0.9-1.9-1.5C240.3,672.6,240,671.8,240,670.9z\"></path>		<path class=\"st2\" d=\"M258.8,672.1l1.6,0.2c-0.3,1-0.7,1.7-1.4,2.2s-1.6,0.8-2.7,0.8c-1.4,0-2.4-0.4-3.2-1.3   c-0.8-0.8-1.2-2-1.2-3.5c0-1.6,0.4-2.8,1.2-3.7s1.9-1.3,3.1-1.3c1.2,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.6c0,0.1,0,0.2,0,0.4h-7   c0.1,1,0.3,1.8,0.9,2.4s1.2,0.8,2,0.8c0.6,0,1.1-0.2,1.5-0.5S258.6,672.7,258.8,672.1z M253.6,669.5h5.2c-0.1-0.8-0.3-1.4-0.6-1.8   c-0.5-0.6-1.2-0.9-2-0.9c-0.7,0-1.3,0.2-1.8,0.7S253.6,668.7,253.6,669.5z\"></path>		<path class=\"st2\" d=\"M268.8,672.1l1.6,0.2c-0.3,1-0.7,1.7-1.4,2.2s-1.6,0.8-2.7,0.8c-1.4,0-2.4-0.4-3.2-1.3   c-0.8-0.8-1.2-2-1.2-3.5c0-1.6,0.4-2.8,1.2-3.7s1.9-1.3,3.1-1.3c1.2,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.6c0,0.1,0,0.2,0,0.4h-7   c0.1,1,0.3,1.8,0.9,2.4s1.2,0.8,2,0.8c0.6,0,1.1-0.2,1.5-0.5S268.6,672.7,268.8,672.1z M263.6,669.5h5.2c-0.1-0.8-0.3-1.4-0.6-1.8   c-0.5-0.6-1.2-0.9-2-0.9c-0.7,0-1.3,0.2-1.8,0.7S263.7,668.7,263.6,669.5z\"></path>		<path class=\"st2\" d=\"M272.4,675.1v-12.9h1.6v7.3l3.7-3.8h2l-3.6,3.5l3.9,5.9h-2l-3.1-4.8l-1.1,1.1v3.7H272.4z\"></path>		<path class=\"st2\" d=\"M285.3,675.1l-5-12.9h1.8l3.3,9.4c0.3,0.8,0.5,1.5,0.7,2.1c0.2-0.7,0.4-1.4,0.7-2.1l3.5-9.4h1.7l-5,12.9   H285.3z\"></path>		<path class=\"st2\" d=\"M298.8,672.1l1.6,0.2c-0.3,1-0.7,1.7-1.4,2.2s-1.6,0.8-2.7,0.8c-1.4,0-2.4-0.4-3.2-1.3   c-0.8-0.8-1.2-2-1.2-3.5c0-1.6,0.4-2.8,1.2-3.7s1.9-1.3,3.1-1.3c1.2,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.6c0,0.1,0,0.2,0,0.4h-7   c0.1,1,0.3,1.8,0.9,2.4s1.2,0.8,2,0.8c0.6,0,1.1-0.2,1.5-0.5S298.6,672.7,298.8,672.1z M293.6,669.5h5.2c-0.1-0.8-0.3-1.4-0.6-1.8   c-0.5-0.6-1.2-0.9-2-0.9c-0.7,0-1.3,0.2-1.8,0.7S293.7,668.7,293.6,669.5z\"></path>		<path class=\"st2\" d=\"M308.5,671.7l1.6,0.2c-0.2,1.1-0.6,1.9-1.3,2.5c-0.7,0.6-1.6,0.9-2.6,0.9c-1.3,0-2.3-0.4-3.1-1.3   c-0.8-0.8-1.2-2-1.2-3.6c0-1,0.2-1.9,0.5-2.6s0.8-1.3,1.5-1.7c0.7-0.4,1.4-0.6,2.2-0.6c1,0,1.8,0.3,2.5,0.8s1.1,1.2,1.2,2.2   l-1.5,0.2c-0.1-0.6-0.4-1.1-0.8-1.4s-0.8-0.5-1.3-0.5c-0.8,0-1.4,0.3-1.9,0.9c-0.5,0.6-0.7,1.5-0.7,2.7c0,1.3,0.2,2.2,0.7,2.7   s1.1,0.9,1.9,0.9c0.6,0,1.1-0.2,1.6-0.6S308.4,672.4,308.5,671.7z\"></path>		<path class=\"st2\" d=\"M314.9,673.7l0.2,1.4c-0.4,0.1-0.8,0.1-1.2,0.1c-0.6,0-1-0.1-1.3-0.3s-0.5-0.4-0.7-0.7s-0.2-0.9-0.2-1.9V667   h-1.2v-1.2h1.2v-2.3l1.6-0.9v3.3h1.6v1.2h-1.6v5.5c0,0.5,0,0.7,0.1,0.9s0.1,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.5,0.1   C314.4,673.7,314.6,673.7,314.9,673.7z\"></path>		<path class=\"st2\" d=\"M315.9,670.4c0-1.7,0.5-3,1.4-3.8c0.8-0.7,1.8-1,2.9-1c1.3,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.5   c0,1.2-0.2,2.1-0.5,2.8c-0.4,0.7-0.9,1.2-1.6,1.6s-1.4,0.6-2.3,0.6c-1.3,0-2.4-0.4-3.2-1.3C316.3,673.2,315.9,672,315.9,670.4z    M317.5,670.4c0,1.2,0.3,2.1,0.8,2.7c0.5,0.6,1.2,0.9,2,0.9c0.8,0,1.4-0.3,2-0.9s0.8-1.5,0.8-2.7c0-1.2-0.3-2-0.8-2.6   c-0.5-0.6-1.2-0.9-2-0.9c-0.8,0-1.4,0.3-2,0.9S317.5,669.2,317.5,670.4z\"></path>		<path class=\"st2\" d=\"M326.4,675.1v-9.3h1.4v1.4c0.4-0.7,0.7-1.1,1-1.3c0.3-0.2,0.6-0.3,1-0.3c0.5,0,1.1,0.2,1.6,0.5l-0.5,1.5   c-0.4-0.2-0.8-0.3-1.2-0.3c-0.3,0-0.7,0.1-0.9,0.3s-0.5,0.5-0.6,0.9c-0.2,0.6-0.3,1.2-0.3,1.8v4.9H326.4z\"></path>		<path class=\"st2\" d=\"M332.6,675.1v-12.9h1.7v11.4h6.3v1.5H332.6z\"></path>		<path class=\"st2\" d=\"M341.9,670.4c0-1.7,0.5-3,1.4-3.8c0.8-0.7,1.8-1,2.9-1c1.3,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.5   c0,1.2-0.2,2.1-0.5,2.8c-0.4,0.7-0.9,1.2-1.6,1.6s-1.4,0.6-2.3,0.6c-1.3,0-2.4-0.4-3.2-1.3C342.3,673.2,341.9,672,341.9,670.4z    M343.5,670.4c0,1.2,0.3,2.1,0.8,2.7c0.5,0.6,1.2,0.9,2,0.9c0.8,0,1.4-0.3,2-0.9s0.8-1.5,0.8-2.7c0-1.2-0.3-2-0.8-2.6   c-0.5-0.6-1.2-0.9-2-0.9c-0.8,0-1.4,0.3-2,0.9S343.5,669.2,343.5,670.4z\"></path>		<path class=\"st2\" d=\"M352.2,675.8l1.5,0.2c0.1,0.5,0.2,0.8,0.5,1c0.4,0.3,0.9,0.4,1.6,0.4c0.7,0,1.3-0.1,1.7-0.4s0.7-0.7,0.8-1.2   c0.1-0.3,0.1-1,0.1-2c-0.7,0.8-1.6,1.2-2.6,1.2c-1.3,0-2.3-0.5-3-1.4s-1.1-2-1.1-3.3c0-0.9,0.2-1.7,0.5-2.5   c0.3-0.8,0.8-1.3,1.4-1.7s1.3-0.6,2.2-0.6c1.1,0,2,0.4,2.7,1.3v-1.1h1.5v8.1c0,1.5-0.1,2.5-0.4,3.1c-0.3,0.6-0.8,1.1-1.4,1.4   c-0.6,0.4-1.4,0.5-2.4,0.5c-1.1,0-2-0.3-2.7-0.8C352.5,677.6,352.2,676.9,352.2,675.8z M353.5,670.2c0,1.2,0.2,2.1,0.7,2.7   s1.1,0.8,1.8,0.8c0.7,0,1.3-0.3,1.8-0.8s0.7-1.4,0.7-2.6c0-1.1-0.3-2-0.8-2.6c-0.5-0.6-1.1-0.9-1.8-0.9c-0.7,0-1.3,0.3-1.8,0.9   C353.7,668.3,353.5,669.1,353.5,670.2z\"></path>		<path class=\"st2\" d=\"M361.9,670.4c0-1.7,0.5-3,1.4-3.8c0.8-0.7,1.8-1,2.9-1c1.3,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.5   c0,1.2-0.2,2.1-0.5,2.8c-0.4,0.7-0.9,1.2-1.6,1.6s-1.4,0.6-2.3,0.6c-1.3,0-2.4-0.4-3.2-1.3C362.3,673.2,361.9,672,361.9,670.4z    M363.5,670.4c0,1.2,0.3,2.1,0.8,2.7c0.5,0.6,1.2,0.9,2,0.9c0.8,0,1.4-0.3,2-0.9s0.8-1.5,0.8-2.7c0-1.2-0.3-2-0.8-2.6   c-0.5-0.6-1.2-0.9-2-0.9c-0.8,0-1.4,0.3-2,0.9S363.5,669.2,363.5,670.4z\"></path>		<path class=\"st2\" d=\"M372.9,675.1v-1.8h1.8v1.8H372.9z\"></path>		<path class=\"st2\" d=\"M386.9,670.6l1.7,0.4c-0.4,1.4-1,2.5-1.9,3.2s-2.1,1.1-3.4,1.1c-1.4,0-2.5-0.3-3.4-0.8   c-0.9-0.6-1.5-1.4-2-2.5c-0.5-1.1-0.7-2.2-0.7-3.5c0-1.3,0.3-2.5,0.8-3.5c0.5-1,1.2-1.8,2.2-2.3c0.9-0.5,2-0.8,3.1-0.8   c1.3,0,2.4,0.3,3.3,1s1.5,1.6,1.8,2.8l-1.7,0.4c-0.3-0.9-0.7-1.6-1.3-2s-1.3-0.6-2.1-0.6c-1,0-1.8,0.2-2.5,0.7   c-0.7,0.5-1.1,1.1-1.4,1.9c-0.3,0.8-0.4,1.6-0.4,2.5c0,1.1,0.2,2.1,0.5,2.9c0.3,0.8,0.8,1.4,1.5,1.8s1.4,0.6,2.2,0.6   c1,0,1.8-0.3,2.4-0.8S386.7,671.6,386.9,670.6z\"></path>		<path class=\"st2\" d=\"M389.9,670.4c0-1.7,0.5-3,1.4-3.8c0.8-0.7,1.8-1,2.9-1c1.3,0,2.3,0.4,3.1,1.3s1.2,2,1.2,3.5   c0,1.2-0.2,2.1-0.5,2.8c-0.4,0.7-0.9,1.2-1.6,1.6s-1.4,0.6-2.3,0.6c-1.3,0-2.4-0.4-3.2-1.3C390.3,673.2,389.9,672,389.9,670.4z    M391.5,670.4c0,1.2,0.3,2.1,0.8,2.7c0.5,0.6,1.2,0.9,2,0.9c0.8,0,1.4-0.3,2-0.9s0.8-1.5,0.8-2.7c0-1.2-0.3-2-0.8-2.6   c-0.5-0.6-1.2-0.9-2-0.9c-0.8,0-1.4,0.3-2,0.9S391.5,669.2,391.5,670.4z\"></path>		<path class=\"st2\" d=\"M400.5,675.1v-9.3h1.4v1.3c0.3-0.5,0.7-0.8,1.2-1.1s1-0.4,1.7-0.4c0.7,0,1.3,0.1,1.7,0.4   c0.4,0.3,0.8,0.7,0.9,1.2c0.7-1.1,1.7-1.6,2.9-1.6c0.9,0,1.6,0.3,2.1,0.8s0.7,1.3,0.7,2.4v6.4h-1.6v-5.9c0-0.6-0.1-1.1-0.2-1.4   c-0.1-0.3-0.3-0.5-0.6-0.7s-0.6-0.3-0.9-0.3c-0.7,0-1.2,0.2-1.6,0.7c-0.4,0.4-0.7,1.1-0.7,2.1v5.4h-1.6V669c0-0.7-0.1-1.2-0.4-1.6   s-0.7-0.5-1.3-0.5c-0.4,0-0.9,0.1-1.2,0.4c-0.4,0.2-0.7,0.6-0.8,1s-0.3,1.1-0.3,2v4.8H400.5z\"></path>	</g></g><g>	<polygon class=\"st3\" points=\"15.2,272.8 42.3,272.8 68.9,343.3 69.2,343.3 96.2,272.8 121.6,272.8 77.2,380.4 58.2,380.4  \"></polygon>	<polygon class=\"st3\" points=\"147.7,272.8 220.7,272.8 220.7,294.7 171.4,294.7 171.4,314.8 218,314.8 218,336.6 171.4,336.6   171.4,358.5 223.5,358.5 223.5,380.4 147.7,380.4  \"></polygon>	<g>		<path class=\"st3\" d=\"M276.2,317.4h14c2.1,0,4.4-0.1,6.8-0.2c2.4-0.2,4.5-0.6,6.5-1.4c1.9-0.8,3.5-1.9,4.8-3.6   c1.3-1.6,1.9-3.9,1.9-6.8c0-2.7-0.6-4.9-1.7-6.5c-1.1-1.6-2.5-2.9-4.3-3.7c-1.7-0.9-3.7-1.4-5.9-1.7c-2.2-0.3-4.4-0.5-6.5-0.5   h-15.5V317.4z M252.5,272.8h41.6c5.5,0,10.7,0.5,15.6,1.6c4.9,1.1,9.2,2.8,12.9,5.3c3.7,2.5,6.6,5.8,8.8,10   c2.2,4.2,3.3,9.4,3.3,15.7c0,7.6-2,14-5.9,19.4c-3.9,5.3-9.7,8.7-17.3,10.1l27.3,45.4h-28.4l-22.5-43h-11.7v43h-23.7V272.8z\"></path>	</g>	<rect x=\"365.8\" y=\"272.8\" class=\"st3\" width=\"23.7\" height=\"107.5\"></rect>	<polygon class=\"st3\" points=\"426.2,272.8 458.4,272.8 504.1,347.6 504.5,347.6 504.5,272.8 528.2,272.8 528.2,380.4 497.2,380.4   450.2,303.8 449.9,303.8 449.9,380.4 426.2,380.4  \"></polygon>	<polygon class=\"st3\" points=\"584.5,293.8 553.8,293.8 553.8,272.8 638.9,272.8 638.9,293.8 608.2,293.8 608.2,380.4 584.5,380.4    \"></polygon>	<g>		<path class=\"st3\" d=\"M630.5,372.3h0.8c0.1,0,0.3,0,0.4,0c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.3s0.1-0.3,0.1-0.5   c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0h-0.8V372.3z M628.5,369h2.8   c0.2,0,0.5,0,0.9,0s0.7,0.1,1.1,0.3s0.7,0.4,0.9,0.8c0.3,0.3,0.4,0.8,0.4,1.5c0,0.4-0.1,0.7-0.2,1c-0.1,0.3-0.2,0.5-0.4,0.6   c-0.2,0.2-0.4,0.3-0.6,0.4c-0.2,0.1-0.4,0.1-0.7,0.2l2,3.1h-2.1l-1.8-3h-0.3v3h-2.1V369z M626,373c0,0.8,0.1,1.5,0.4,2.2   c0.3,0.7,0.7,1.3,1.2,1.8c0.5,0.5,1.1,0.9,1.7,1.2c0.7,0.3,1.4,0.5,2.1,0.5c0.8,0,1.5-0.2,2.1-0.5c0.7-0.3,1.2-0.7,1.7-1.2   c0.5-0.5,0.9-1.1,1.2-1.8c0.3-0.7,0.4-1.4,0.4-2.2s-0.1-1.5-0.4-2.2c-0.3-0.7-0.7-1.3-1.2-1.8c-0.5-0.5-1.1-0.9-1.7-1.2   c-0.7-0.3-1.4-0.5-2.1-0.5c-0.8,0-1.5,0.2-2.1,0.5c-0.7,0.3-1.2,0.7-1.7,1.2c-0.5,0.5-0.9,1.1-1.2,1.8   C626.1,371.5,626,372.2,626,373 M623.9,373c0-1,0.2-2,0.6-2.9c0.4-0.9,0.9-1.7,1.6-2.4c0.7-0.7,1.5-1.2,2.4-1.6   c0.9-0.4,1.9-0.6,2.9-0.6c1,0,2,0.2,2.9,0.6c0.9,0.4,1.7,0.9,2.4,1.6c0.7,0.7,1.2,1.5,1.6,2.4c0.4,0.9,0.6,1.9,0.6,2.9   c0,1-0.2,2-0.6,2.9c-0.4,0.9-0.9,1.7-1.6,2.4c-0.7,0.7-1.5,1.2-2.4,1.6c-0.9,0.4-1.9,0.6-2.9,0.6c-1,0-2-0.2-2.9-0.6   c-0.9-0.4-1.7-0.9-2.4-1.6c-0.7-0.7-1.2-1.5-1.6-2.4C624.1,375,623.9,374,623.9,373\"></path>	</g></g></svg>'),(12716,7362,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"800\" width=\"1200\" viewBox=\"-74.724 -44.2535 647.608 265.521\"><path d=\"M288.466 108.612c-1.11 7.753-2.92 13.689-5.428 17.802-4.504 7.386-10.866 11.077-19.087 11.077-7.995 0-14.315-3.771-18.959-11.311-4.645-7.539-6.968-19.938-6.968-37.192 0-17.41 2.336-29.887 7.01-37.428 4.672-7.539 10.866-11.31 18.581-11.31 8.051 0 14.427 3.713 19.129 11.135 2.762 4.361 4.705 10.229 5.845 17.581h38.528c-2.005-18.841-7.259-34.116-15.785-45.796C300.183 7.896 284.305.259 263.699.259c-20.101 0-35.782 7.774-47.042 23.319-11.262 15.547-16.891 37.271-16.891 65.176 0 19.978 2.843 36.61 8.53 49.902 5.686 13.291 13.104 23.009 22.254 29.146 9.149 6.144 20.706 9.212 34.669 9.212 13.737 0 25.209-3.557 34.415-10.669 9.205-7.11 16.244-17.061 21.114-29.848 3.016-7.917 5.095-17.215 6.243-27.888zM0 0h35.176L81.08 97.704V0h35.509v176.601H81.08L35.426 79.635v96.966H0zm143.116 0h37.754v176.601h-37.754zm197.168 0h100.955v37.705h-63.201v28.067h58.627v36.02h-58.627v34.813h65.03v39.994H340.284z\"></path><path fill=\"#0067AD\" d=\"M102.809 67.669h40.121v40.121h-40.121zm78.193 0h40.121v40.121h-40.121zm145.376 0h40.121v40.121h-40.121z\"></path><path d=\"M466.357 34.082V12.607h9.126c2.295 0 3.962.193 5.003.579 1.039.387 1.872 1.072 2.497 2.059.625.985.938 2.113.938 3.384 0 1.611-.474 2.942-1.421 3.992-.947 1.05-2.363 1.711-4.248 1.984.938.547 1.711 1.147 2.322 1.803.608.653 1.433 1.815 2.468 3.485l2.622 4.189h-5.186l-3.136-4.673c-1.112-1.67-1.875-2.723-2.285-3.157-.409-.436-.845-.732-1.304-.895-.459-.161-1.187-.241-2.183-.241h-.879v8.965zm4.336-12.393h3.208c2.079 0 3.379-.088 3.896-.264a2.339 2.339 0 001.216-.908c.293-.429.439-.967.439-1.61 0-.724-.193-1.307-.578-1.75-.387-.444-.931-.726-1.634-.843-.353-.049-1.406-.072-3.164-.072h-3.384z\"></path><ellipse ry=\"20.375\" rx=\"20.417\" cy=\"23.374\" cx=\"475.243\" stroke-width=\"5\" stroke=\"#000\" fill=\"none\"></ellipse></svg>'),(12717,7362,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"800\" width=\"1200\" viewBox=\"-74.724 -44.2535 647.608 265.521\"><path d=\"M288.466 108.612c-1.11 7.753-2.92 13.689-5.428 17.802-4.504 7.386-10.866 11.077-19.087 11.077-7.995 0-14.315-3.771-18.959-11.311-4.645-7.539-6.968-19.938-6.968-37.192 0-17.41 2.336-29.887 7.01-37.428 4.672-7.539 10.866-11.31 18.581-11.31 8.051 0 14.427 3.713 19.129 11.135 2.762 4.361 4.705 10.229 5.845 17.581h38.528c-2.005-18.841-7.259-34.116-15.785-45.796C300.183 7.896 284.305.259 263.699.259c-20.101 0-35.782 7.774-47.042 23.319-11.262 15.547-16.891 37.271-16.891 65.176 0 19.978 2.843 36.61 8.53 49.902 5.686 13.291 13.104 23.009 22.254 29.146 9.149 6.144 20.706 9.212 34.669 9.212 13.737 0 25.209-3.557 34.415-10.669 9.205-7.11 16.244-17.061 21.114-29.848 3.016-7.917 5.095-17.215 6.243-27.888zM0 0h35.176L81.08 97.704V0h35.509v176.601H81.08L35.426 79.635v96.966H0zm143.116 0h37.754v176.601h-37.754zm197.168 0h100.955v37.705h-63.201v28.067h58.627v36.02h-58.627v34.813h65.03v39.994H340.284z\"></path><path fill=\"#0067AD\" d=\"M102.809 67.669h40.121v40.121h-40.121zm78.193 0h40.121v40.121h-40.121zm145.376 0h40.121v40.121h-40.121z\"></path><path d=\"M466.357 34.082V12.607h9.126c2.295 0 3.962.193 5.003.579 1.039.387 1.872 1.072 2.497 2.059.625.985.938 2.113.938 3.384 0 1.611-.474 2.942-1.421 3.992-.947 1.05-2.363 1.711-4.248 1.984.938.547 1.711 1.147 2.322 1.803.608.653 1.433 1.815 2.468 3.485l2.622 4.189h-5.186l-3.136-4.673c-1.112-1.67-1.875-2.723-2.285-3.157-.409-.436-.845-.732-1.304-.895-.459-.161-1.187-.241-2.183-.241h-.879v8.965zm4.336-12.393h3.208c2.079 0 3.379-.088 3.896-.264a2.339 2.339 0 001.216-.908c.293-.429.439-.967.439-1.61 0-.724-.193-1.307-.578-1.75-.387-.444-.931-.726-1.634-.843-.353-.049-1.406-.072-3.164-.072h-3.384z\"></path><ellipse ry=\"20.375\" rx=\"20.417\" cy=\"23.374\" cx=\"475.243\" stroke-width=\"5\" stroke=\"#000\" fill=\"none\"></ellipse></svg>'),(12718,7354,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"800\" width=\"1200\" viewBox=\"-40.446 -22.19 350.532 133.14\"><path d=\"M115.39 46.71c0 12.77-9.99 22.18-22.25 22.18s-22.25-9.41-22.25-22.18c0-12.86 9.99-22.18 22.25-22.18s22.25 9.32 22.25 22.18zm-9.74 0c0-7.98-5.79-13.44-12.51-13.44s-12.51 5.46-12.51 13.44c0 7.9 5.79 13.44 12.51 13.44s12.51-5.55 12.51-13.44z\" fill=\"#EA4335\"></path><path d=\"M163.39 46.71c0 12.77-9.99 22.18-22.25 22.18s-22.25-9.41-22.25-22.18c0-12.85 9.99-22.18 22.25-22.18s22.25 9.32 22.25 22.18zm-9.74 0c0-7.98-5.79-13.44-12.51-13.44s-12.51 5.46-12.51 13.44c0 7.9 5.79 13.44 12.51 13.44s12.51-5.55 12.51-13.44z\" fill=\"#FBBC05\"></path><path d=\"M209.39 25.87v39.82c0 16.38-9.66 23.07-21.08 23.07-10.75 0-17.22-7.19-19.66-13.07l8.48-3.53c1.51 3.61 5.21 7.87 11.17 7.87 7.31 0 11.84-4.51 11.84-13v-3.19h-.34c-2.18 2.69-6.38 5.04-11.68 5.04-11.09 0-21.25-9.66-21.25-22.09 0-12.52 10.16-22.26 21.25-22.26 5.29 0 9.49 2.35 11.68 4.96h.34v-3.61h9.25zm-8.56 20.92c0-7.81-5.21-13.52-11.84-13.52-6.72 0-12.35 5.71-12.35 13.52 0 7.73 5.63 13.36 12.35 13.36 6.63 0 11.84-5.63 11.84-13.36z\" fill=\"#4285F4\"></path><path d=\"M224.64 2.53v65h-9.5v-65z\" fill=\"#34A853\"></path><path d=\"M261.66 54.01l7.56 5.04c-2.44 3.61-8.32 9.83-18.48 9.83-12.6 0-22.01-9.74-22.01-22.18 0-13.19 9.49-22.18 20.92-22.18 11.51 0 17.14 9.16 18.98 14.11l1.01 2.52-29.65 12.28c2.27 4.45 5.8 6.72 10.75 6.72 4.96 0 8.4-2.44 10.92-6.14zm-23.27-7.98l19.82-8.23c-1.09-2.77-4.37-4.7-8.23-4.7-4.95 0-11.84 4.37-11.59 12.93z\" fill=\"#EA4335\"></path><path d=\"M34.93 40.94v-9.41h31.71c.31 1.64.47 3.58.47 5.68 0 7.06-1.93 15.79-8.15 22.01-6.05 6.3-13.78 9.66-24.02 9.66C15.96 68.88 0 53.42 0 34.44 0 15.46 15.96 0 34.94 0c10.5 0 17.98 4.12 23.6 9.49l-6.64 6.64c-4.03-3.78-9.49-6.72-16.97-6.72-13.86 0-24.7 11.17-24.7 25.03 0 13.86 10.84 25.03 24.7 25.03 8.99 0 14.11-3.61 17.39-6.89 2.66-2.66 4.41-6.46 5.1-11.65z\" fill=\"#4285F4\"></path></svg>'),(12719,7354,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"800\" width=\"1200\" viewBox=\"-40.446 -22.19 350.532 133.14\"><path d=\"M115.39 46.71c0 12.77-9.99 22.18-22.25 22.18s-22.25-9.41-22.25-22.18c0-12.86 9.99-22.18 22.25-22.18s22.25 9.32 22.25 22.18zm-9.74 0c0-7.98-5.79-13.44-12.51-13.44s-12.51 5.46-12.51 13.44c0 7.9 5.79 13.44 12.51 13.44s12.51-5.55 12.51-13.44z\" fill=\"#EA4335\"></path><path d=\"M163.39 46.71c0 12.77-9.99 22.18-22.25 22.18s-22.25-9.41-22.25-22.18c0-12.85 9.99-22.18 22.25-22.18s22.25 9.32 22.25 22.18zm-9.74 0c0-7.98-5.79-13.44-12.51-13.44s-12.51 5.46-12.51 13.44c0 7.9 5.79 13.44 12.51 13.44s12.51-5.55 12.51-13.44z\" fill=\"#FBBC05\"></path><path d=\"M209.39 25.87v39.82c0 16.38-9.66 23.07-21.08 23.07-10.75 0-17.22-7.19-19.66-13.07l8.48-3.53c1.51 3.61 5.21 7.87 11.17 7.87 7.31 0 11.84-4.51 11.84-13v-3.19h-.34c-2.18 2.69-6.38 5.04-11.68 5.04-11.09 0-21.25-9.66-21.25-22.09 0-12.52 10.16-22.26 21.25-22.26 5.29 0 9.49 2.35 11.68 4.96h.34v-3.61h9.25zm-8.56 20.92c0-7.81-5.21-13.52-11.84-13.52-6.72 0-12.35 5.71-12.35 13.52 0 7.73 5.63 13.36 12.35 13.36 6.63 0 11.84-5.63 11.84-13.36z\" fill=\"#4285F4\"></path><path d=\"M224.64 2.53v65h-9.5v-65z\" fill=\"#34A853\"></path><path d=\"M261.66 54.01l7.56 5.04c-2.44 3.61-8.32 9.83-18.48 9.83-12.6 0-22.01-9.74-22.01-22.18 0-13.19 9.49-22.18 20.92-22.18 11.51 0 17.14 9.16 18.98 14.11l1.01 2.52-29.65 12.28c2.27 4.45 5.8 6.72 10.75 6.72 4.96 0 8.4-2.44 10.92-6.14zm-23.27-7.98l19.82-8.23c-1.09-2.77-4.37-4.7-8.23-4.7-4.95 0-11.84 4.37-11.59 12.93z\" fill=\"#EA4335\"></path><path d=\"M34.93 40.94v-9.41h31.71c.31 1.64.47 3.58.47 5.68 0 7.06-1.93 15.79-8.15 22.01-6.05 6.3-13.78 9.66-24.02 9.66C15.96 68.88 0 53.42 0 34.44 0 15.46 15.96 0 34.94 0c10.5 0 17.98 4.12 23.6 9.49l-6.64 6.64c-4.03-3.78-9.49-6.72-16.97-6.72-13.86 0-24.7 11.17-24.7 25.03 0 13.86 10.84 25.03 24.7 25.03 8.99 0 14.11-3.61 17.39-6.89 2.66-2.66 4.41-6.46 5.1-11.65z\" fill=\"#4285F4\"></path></svg>'),(12720,7346,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"800\" width=\"1200\" xml:space=\"preserve\" y=\"0\" x=\"0\" id=\"Layer_1\" viewBox=\"-45.10065 -44.95 390.8723 269.7\"><style id=\"style1855\" type=\"text/css\">.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#f90}</style><g transform=\"translate(-1.668 -1.1)\" id=\"g1865\"><path id=\"path1857\" d=\"M86.4 66.4c0 3.7.4 6.7 1.1 8.9.8 2.2 1.8 4.6 3.2 7.2.5.8.7 1.6.7 2.3 0 1-.6 2-1.9 3L83.2 92c-.9.6-1.8.9-2.6.9-1 0-2-.5-3-1.4-1.4-1.5-2.6-3.1-3.6-4.7-1-1.7-2-3.6-3.1-5.9-7.8 9.2-17.6 13.8-29.4 13.8-8.4 0-15.1-2.4-20-7.2-4.9-4.8-7.4-11.2-7.4-19.2 0-8.5 3-15.4 9.1-20.6 6.1-5.2 14.2-7.8 24.5-7.8 3.4 0 6.9.3 10.6.8 3.7.5 7.5 1.3 11.5 2.2v-7.3c0-7.6-1.6-12.9-4.7-16-3.2-3.1-8.6-4.6-16.3-4.6-3.5 0-7.1.4-10.8 1.3-3.7.9-7.3 2-10.8 3.4-1.6.7-2.8 1.1-3.5 1.3-.7.2-1.2.3-1.6.3-1.4 0-2.1-1-2.1-3.1v-4.9c0-1.6.2-2.8.7-3.5.5-.7 1.4-1.4 2.8-2.1 3.5-1.8 7.7-3.3 12.6-4.5C41 1.9 46.2 1.3 51.7 1.3c11.9 0 20.6 2.7 26.2 8.1 5.5 5.4 8.3 13.6 8.3 24.6v32.4zM45.8 81.6c3.3 0 6.7-.6 10.3-1.8 3.6-1.2 6.8-3.4 9.5-6.4 1.6-1.9 2.8-4 3.4-6.4.6-2.4 1-5.3 1-8.7v-4.2c-2.9-.7-6-1.3-9.2-1.7-3.2-.4-6.3-.6-9.4-.6-6.7 0-11.6 1.3-14.9 4-3.3 2.7-4.9 6.5-4.9 11.5 0 4.7 1.2 8.2 3.7 10.6 2.4 2.5 5.9 3.7 10.5 3.7zm80.3 10.8c-1.8 0-3-.3-3.8-1-.8-.6-1.5-2-2.1-3.9L96.7 10.2c-.6-2-.9-3.3-.9-4 0-1.6.8-2.5 2.4-2.5h9.8c1.9 0 3.2.3 3.9 1 .8.6 1.4 2 2 3.9l16.8 66.2 15.6-66.2c.5-2 1.1-3.3 1.9-3.9.8-.6 2.2-1 4-1h8c1.9 0 3.2.3 4 1 .8.6 1.5 2 1.9 3.9l15.8 67 17.3-67c.6-2 1.3-3.3 2-3.9.8-.6 2.1-1 3.9-1h9.3c1.6 0 2.5.8 2.5 2.5 0 .5-.1 1-.2 1.6-.1.6-.3 1.4-.7 2.5l-24.1 77.3c-.6 2-1.3 3.3-2.1 3.9-.8.6-2.1 1-3.8 1h-8.6c-1.9 0-3.2-.3-4-1-.8-.7-1.5-2-1.9-4L156 23l-15.4 64.4c-.5 2-1.1 3.3-1.9 4-.8.7-2.2 1-4 1zm128.5 2.7c-5.2 0-10.4-.6-15.4-1.8-5-1.2-8.9-2.5-11.5-4-1.6-.9-2.7-1.9-3.1-2.8-.4-.9-.6-1.9-.6-2.8v-5.1c0-2.1.8-3.1 2.3-3.1.6 0 1.2.1 1.8.3.6.2 1.5.6 2.5 1 3.4 1.5 7.1 2.7 11 3.5 4 .8 7.9 1.2 11.9 1.2 6.3 0 11.2-1.1 14.6-3.3 3.4-2.2 5.2-5.4 5.2-9.5 0-2.8-.9-5.1-2.7-7-1.8-1.9-5.2-3.6-10.1-5.2L246 52c-7.3-2.3-12.7-5.7-16-10.2-3.3-4.4-5-9.3-5-14.5 0-4.2.9-7.9 2.7-11.1 1.8-3.2 4.2-6 7.2-8.2 3-2.3 6.4-4 10.4-5.2 4-1.2 8.2-1.7 12.6-1.7 2.2 0 4.5.1 6.7.4 2.3.3 4.4.7 6.5 1.1 2 .5 3.9 1 5.7 1.6 1.8.6 3.2 1.2 4.2 1.8 1.4.8 2.4 1.6 3 2.5.6.8.9 1.9.9 3.3v4.7c0 2.1-.8 3.2-2.3 3.2-.8 0-2.1-.4-3.8-1.2-5.7-2.6-12.1-3.9-19.2-3.9-5.7 0-10.2.9-13.3 2.8-3.1 1.9-4.7 4.8-4.7 8.9 0 2.8 1 5.2 3 7.1 2 1.9 5.7 3.8 11 5.5l14.2 4.5c7.2 2.3 12.4 5.5 15.5 9.6 3.1 4.1 4.6 8.8 4.6 14 0 4.3-.9 8.2-2.6 11.6-1.8 3.4-4.2 6.4-7.3 8.8-3.1 2.5-6.8 4.3-11.1 5.6-4.5 1.4-9.2 2.1-14.3 2.1z\" fill=\"#252f3e\"></path><g id=\"g1863\"><path id=\"path1859\" d=\"M273.5 143.7c-32.9 24.3-80.7 37.2-121.8 37.2-57.6 0-109.5-21.3-148.7-56.7-3.1-2.8-.3-6.6 3.4-4.4 42.4 24.6 94.7 39.5 148.8 39.5 36.5 0 76.6-7.6 113.5-23.2 5.5-2.5 10.2 3.6 4.8 7.6z\" class=\"st1\"></path><path id=\"path1861\" d=\"M287.2 128.1c-4.2-5.4-27.8-2.6-38.5-1.3-3.2.4-3.7-2.4-.8-4.5 18.8-13.2 49.7-9.4 53.3-5 3.6 4.5-1 35.4-18.6 50.2-2.7 2.3-5.3 1.1-4.1-1.9 4-9.9 12.9-32.2 8.7-37.5z\" class=\"st1\"></path></g></g></svg>'),(12721,7346,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"800\" width=\"1200\" xml:space=\"preserve\" y=\"0\" x=\"0\" id=\"Layer_1\" viewBox=\"-45.10065 -44.95 390.8723 269.7\"><style id=\"style1855\" type=\"text/css\">.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#f90}</style><g transform=\"translate(-1.668 -1.1)\" id=\"g1865\"><path id=\"path1857\" d=\"M86.4 66.4c0 3.7.4 6.7 1.1 8.9.8 2.2 1.8 4.6 3.2 7.2.5.8.7 1.6.7 2.3 0 1-.6 2-1.9 3L83.2 92c-.9.6-1.8.9-2.6.9-1 0-2-.5-3-1.4-1.4-1.5-2.6-3.1-3.6-4.7-1-1.7-2-3.6-3.1-5.9-7.8 9.2-17.6 13.8-29.4 13.8-8.4 0-15.1-2.4-20-7.2-4.9-4.8-7.4-11.2-7.4-19.2 0-8.5 3-15.4 9.1-20.6 6.1-5.2 14.2-7.8 24.5-7.8 3.4 0 6.9.3 10.6.8 3.7.5 7.5 1.3 11.5 2.2v-7.3c0-7.6-1.6-12.9-4.7-16-3.2-3.1-8.6-4.6-16.3-4.6-3.5 0-7.1.4-10.8 1.3-3.7.9-7.3 2-10.8 3.4-1.6.7-2.8 1.1-3.5 1.3-.7.2-1.2.3-1.6.3-1.4 0-2.1-1-2.1-3.1v-4.9c0-1.6.2-2.8.7-3.5.5-.7 1.4-1.4 2.8-2.1 3.5-1.8 7.7-3.3 12.6-4.5C41 1.9 46.2 1.3 51.7 1.3c11.9 0 20.6 2.7 26.2 8.1 5.5 5.4 8.3 13.6 8.3 24.6v32.4zM45.8 81.6c3.3 0 6.7-.6 10.3-1.8 3.6-1.2 6.8-3.4 9.5-6.4 1.6-1.9 2.8-4 3.4-6.4.6-2.4 1-5.3 1-8.7v-4.2c-2.9-.7-6-1.3-9.2-1.7-3.2-.4-6.3-.6-9.4-.6-6.7 0-11.6 1.3-14.9 4-3.3 2.7-4.9 6.5-4.9 11.5 0 4.7 1.2 8.2 3.7 10.6 2.4 2.5 5.9 3.7 10.5 3.7zm80.3 10.8c-1.8 0-3-.3-3.8-1-.8-.6-1.5-2-2.1-3.9L96.7 10.2c-.6-2-.9-3.3-.9-4 0-1.6.8-2.5 2.4-2.5h9.8c1.9 0 3.2.3 3.9 1 .8.6 1.4 2 2 3.9l16.8 66.2 15.6-66.2c.5-2 1.1-3.3 1.9-3.9.8-.6 2.2-1 4-1h8c1.9 0 3.2.3 4 1 .8.6 1.5 2 1.9 3.9l15.8 67 17.3-67c.6-2 1.3-3.3 2-3.9.8-.6 2.1-1 3.9-1h9.3c1.6 0 2.5.8 2.5 2.5 0 .5-.1 1-.2 1.6-.1.6-.3 1.4-.7 2.5l-24.1 77.3c-.6 2-1.3 3.3-2.1 3.9-.8.6-2.1 1-3.8 1h-8.6c-1.9 0-3.2-.3-4-1-.8-.7-1.5-2-1.9-4L156 23l-15.4 64.4c-.5 2-1.1 3.3-1.9 4-.8.7-2.2 1-4 1zm128.5 2.7c-5.2 0-10.4-.6-15.4-1.8-5-1.2-8.9-2.5-11.5-4-1.6-.9-2.7-1.9-3.1-2.8-.4-.9-.6-1.9-.6-2.8v-5.1c0-2.1.8-3.1 2.3-3.1.6 0 1.2.1 1.8.3.6.2 1.5.6 2.5 1 3.4 1.5 7.1 2.7 11 3.5 4 .8 7.9 1.2 11.9 1.2 6.3 0 11.2-1.1 14.6-3.3 3.4-2.2 5.2-5.4 5.2-9.5 0-2.8-.9-5.1-2.7-7-1.8-1.9-5.2-3.6-10.1-5.2L246 52c-7.3-2.3-12.7-5.7-16-10.2-3.3-4.4-5-9.3-5-14.5 0-4.2.9-7.9 2.7-11.1 1.8-3.2 4.2-6 7.2-8.2 3-2.3 6.4-4 10.4-5.2 4-1.2 8.2-1.7 12.6-1.7 2.2 0 4.5.1 6.7.4 2.3.3 4.4.7 6.5 1.1 2 .5 3.9 1 5.7 1.6 1.8.6 3.2 1.2 4.2 1.8 1.4.8 2.4 1.6 3 2.5.6.8.9 1.9.9 3.3v4.7c0 2.1-.8 3.2-2.3 3.2-.8 0-2.1-.4-3.8-1.2-5.7-2.6-12.1-3.9-19.2-3.9-5.7 0-10.2.9-13.3 2.8-3.1 1.9-4.7 4.8-4.7 8.9 0 2.8 1 5.2 3 7.1 2 1.9 5.7 3.8 11 5.5l14.2 4.5c7.2 2.3 12.4 5.5 15.5 9.6 3.1 4.1 4.6 8.8 4.6 14 0 4.3-.9 8.2-2.6 11.6-1.8 3.4-4.2 6.4-7.3 8.8-3.1 2.5-6.8 4.3-11.1 5.6-4.5 1.4-9.2 2.1-14.3 2.1z\" fill=\"#252f3e\"></path><g id=\"g1863\"><path id=\"path1859\" d=\"M273.5 143.7c-32.9 24.3-80.7 37.2-121.8 37.2-57.6 0-109.5-21.3-148.7-56.7-3.1-2.8-.3-6.6 3.4-4.4 42.4 24.6 94.7 39.5 148.8 39.5 36.5 0 76.6-7.6 113.5-23.2 5.5-2.5 10.2 3.6 4.8 7.6z\" class=\"st1\"></path><path id=\"path1861\" d=\"M287.2 128.1c-4.2-5.4-27.8-2.6-38.5-1.3-3.2.4-3.7-2.4-.8-4.5 18.8-13.2 49.7-9.4 53.3-5 3.6 4.5-1 35.4-18.6 50.2-2.7 2.3-5.3 1.1-4.1-1.9 4-9.9 12.9-32.2 8.7-37.5z\" class=\"st1\"></path></g></g></svg>'),(12722,8037,'_elementor_source','post'),(12723,8037,'_elementor_edit_mode','builder'),(12724,8037,'_elementor_template_type','popup'),(12725,8037,'_elementor_version','3.15.3'),(12726,8037,'_elementor_pro_version','3.15.0'),(12727,8037,'_wp_page_template','default'),(12728,8037,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12729,8037,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12730,8037,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12731,8037,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12732,8037,'_elementor_css','a:6:{s:4:\"time\";i:1712096290;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12735,8038,'_elementor_source','post'),(12736,8038,'_elementor_edit_mode','builder'),(12737,8038,'_elementor_template_type','popup'),(12738,8038,'_elementor_version','3.15.3'),(12739,8038,'_elementor_pro_version','3.15.0'),(12740,8038,'_wp_page_template','default'),(12741,8038,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":1},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12742,8038,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12743,8038,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12744,8038,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12745,8038,'_elementor_css','a:6:{s:4:\"time\";i:1712096702;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12748,8039,'_elementor_source','post'),(12749,8039,'_elementor_edit_mode','builder'),(12750,8039,'_elementor_template_type','popup'),(12751,8039,'_elementor_version','3.15.3'),(12752,8039,'_elementor_pro_version','3.15.0'),(12753,8039,'_wp_page_template','default'),(12754,8039,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":1,\"css_classes\":\"container-menu-managed-services\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12755,8039,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12756,8039,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12757,8039,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12758,8039,'_elementor_css','a:6:{s:4:\"time\";i:1712096843;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12761,8040,'_elementor_source','post'),(12762,8040,'_elementor_edit_mode','builder'),(12763,8040,'_elementor_template_type','popup'),(12764,8040,'_elementor_version','3.15.3'),(12765,8040,'_elementor_pro_version','3.15.0'),(12766,8040,'_wp_page_template','default'),(12767,8040,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":1,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\n    background-color: transparent\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12768,8040,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12769,8040,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12770,8040,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12771,8040,'_elementor_css','a:6:{s:4:\"time\";i:1712096915;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12773,8041,'_elementor_source','post'),(12774,8041,'_elementor_edit_mode','builder'),(12775,8041,'_elementor_template_type','popup'),(12776,8041,'_elementor_version','3.15.3'),(12777,8041,'_elementor_pro_version','3.15.0'),(12778,8041,'_wp_page_template','default'),(12779,8041,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":1,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12780,8041,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12781,8041,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12782,8041,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12785,8042,'_elementor_source','post'),(12786,8042,'_elementor_edit_mode','builder'),(12787,8042,'_elementor_template_type','popup'),(12788,8042,'_elementor_version','3.15.3'),(12789,8042,'_elementor_pro_version','3.15.0'),(12790,8042,'_wp_page_template','default'),(12791,8042,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":1,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12792,8042,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12793,8042,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12794,8042,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12795,8042,'_elementor_css','a:6:{s:4:\"time\";i:1712097047;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12798,8043,'_elementor_source','post'),(12799,8043,'_elementor_edit_mode','builder'),(12800,8043,'_elementor_template_type','popup'),(12801,8043,'_elementor_version','3.15.3'),(12802,8043,'_elementor_pro_version','3.15.0'),(12803,8043,'_wp_page_template','default'),(12804,8043,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":1,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12805,8043,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12806,8043,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12807,8043,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12808,8043,'_elementor_css','a:6:{s:4:\"time\";i:1712097188;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12811,8044,'_elementor_source','post'),(12812,8044,'_elementor_edit_mode','builder'),(12813,8044,'_elementor_template_type','popup'),(12814,8044,'_elementor_version','3.15.3'),(12815,8044,'_elementor_pro_version','3.15.0'),(12816,8044,'_wp_page_template','default'),(12817,8044,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":1,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12818,8044,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12819,8044,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12820,8044,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12821,8044,'_elementor_css','a:6:{s:4:\"time\";i:1712097242;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12833,8046,'_elementor_source','post'),(12834,8046,'_elementor_edit_mode','builder'),(12835,8046,'_elementor_template_type','popup'),(12836,8046,'_elementor_version','3.15.3'),(12837,8046,'_elementor_pro_version','3.15.0'),(12838,8046,'_wp_page_template','default'),(12839,8046,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12840,8046,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12841,8046,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12842,8046,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12843,8046,'_elementor_css','a:6:{s:4:\"time\";i:1712097279;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12846,8047,'_elementor_source','post'),(12847,8047,'_elementor_edit_mode','builder'),(12848,8047,'_elementor_template_type','popup'),(12849,8047,'_elementor_version','3.15.3'),(12850,8047,'_elementor_pro_version','3.15.0'),(12851,8047,'_wp_page_template','default'),(12852,8047,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12853,8047,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12854,8047,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12855,8047,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12856,8047,'_elementor_css','a:6:{s:4:\"time\";i:1712097842;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12859,8048,'_elementor_source','post'),(12860,8048,'_elementor_edit_mode','builder'),(12861,8048,'_elementor_template_type','popup'),(12862,8048,'_elementor_version','3.15.3'),(12863,8048,'_elementor_pro_version','3.15.0'),(12864,8048,'_wp_page_template','default'),(12865,8048,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\nz-index: 99999;\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12866,8048,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12867,8048,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12868,8048,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12869,8048,'_elementor_css','a:6:{s:4:\"time\";i:1712098347;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12871,8049,'_elementor_source','post'),(12872,8049,'_elementor_edit_mode','builder'),(12873,8049,'_elementor_template_type','popup'),(12874,8049,'_elementor_version','3.15.3'),(12875,8049,'_elementor_pro_version','3.15.0'),(12876,8049,'_wp_page_template','default'),(12877,8049,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\nz-index: 99999 !important;\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12878,8049,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12879,8049,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12880,8049,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12883,8050,'_elementor_source','post'),(12884,8050,'_elementor_edit_mode','builder'),(12885,8050,'_elementor_template_type','popup'),(12886,8050,'_elementor_version','3.15.3'),(12887,8050,'_elementor_pro_version','3.15.0'),(12888,8050,'_wp_page_template','default'),(12889,8050,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent;\\nposition: relative;\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(12890,8050,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(12891,8050,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(12892,8050,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(12893,8050,'_elementor_css','a:6:{s:4:\"time\";i:1712099034;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12897,8052,'_edit_lock','1712646228:1'),(12898,8052,'_edit_last','1'),(12899,8052,'bizmax_wp_page_options','a:3:{s:16:\"page_custom_logo\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:18:\"enable_page_topbar\";s:1:\"1\";s:11:\"page_header\";s:7:\"default\";}'),(12900,8052,'bizmax_wp_breadcrumb_options','a:4:{s:17:\"enable_breadcrumb\";s:1:\"1\";s:13:\"pagebc_styles\";s:7:\"default\";s:15:\"bc_custom_title\";s:0:\"\";s:18:\"bc_page_background\";a:8:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}}'),(12901,8052,'_elementor_edit_mode','builder'),(12902,8052,'_elementor_template_type','wp-page'),(12903,8052,'_elementor_version','3.15.3'),(12904,8052,'_elementor_pro_version','3.15.0'),(12905,8052,'_wp_page_template','default'),(12906,8052,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/pss.jpg\",\"id\":8084,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions. These integrated systems enable seamless communication and coordination among first responders, law enforcement, and public safety agencies, ensuring swift and efficient responses to emergencies and threats. Through unified communication, critical information can be shared instantly across different platforms and devices, breaking down barriers between agencies and enabling collaborative decision-making. Surveillance systems play a crucial role in monitoring public spaces, identifying potential threats, and providing real-time data that enhances situational awareness. Meanwhile, command and control systems integrate this information, offering a centralised hub for decision-making and resource allocation. By leveraging advanced technologies such as artificial intelligence and data analytics, these systems can predict potential incidents, optimise response strategies, and ensure that the right resources are deployed at the right time. Together, unified communication, surveillance, and command and control systems offer a holistic approach to public safety, enhancing the ability of cities and communities to protect their citizens and respond effectively\\u00a0to\\u00a0any\\u00a0crisis.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12907,8052,'_elementor_page_assets','a:0:{}'),(12910,8053,'_elementor_edit_mode','builder'),(12911,8053,'_elementor_template_type','wp-page'),(12912,8053,'_elementor_version','3.15.3'),(12913,8053,'_elementor_pro_version','3.15.0'),(12914,8053,'_wp_page_template','default'),(12915,8053,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12916,8053,'_elementor_page_assets','a:0:{}'),(12917,8053,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(12918,8053,'_elementor_css','a:6:{s:4:\"time\";i:1712099265;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12920,8054,'_elementor_edit_mode','builder'),(12921,8054,'_elementor_template_type','wp-page'),(12922,8054,'_elementor_version','3.15.3'),(12923,8054,'_elementor_pro_version','3.15.0'),(12924,8054,'_wp_page_template','default'),(12925,8054,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12926,8054,'_elementor_page_assets','a:0:{}'),(12927,8054,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(12928,8054,'_elementor_css','a:6:{s:4:\"time\";i:1712099265;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12929,8055,'_elementor_edit_mode','builder'),(12930,8055,'_elementor_template_type','wp-page'),(12931,8055,'_elementor_version','3.15.3'),(12932,8055,'_elementor_pro_version','3.15.0'),(12933,8055,'_wp_page_template','default'),(12934,8055,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO\\u2019s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12935,8055,'_elementor_page_assets','a:0:{}'),(12936,8055,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(12937,8055,'_elementor_css','a:6:{s:4:\"time\";i:1712099265;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12938,8056,'_elementor_edit_mode','builder'),(12939,8056,'_elementor_template_type','wp-page'),(12940,8056,'_elementor_version','3.15.3'),(12941,8056,'_elementor_pro_version','3.15.0'),(12942,8056,'_wp_page_template','default'),(12943,8056,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><strong>Lorem Ipsum<\\/strong>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(12944,8056,'_elementor_page_assets','a:0:{}'),(12945,8056,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(12946,8056,'_elementor_css','a:6:{s:4:\"time\";i:1712099265;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12947,8058,'_menu_item_type','post_type'),(12948,8058,'_menu_item_menu_item_parent','0'),(12949,8058,'_menu_item_object_id','8052'),(12950,8058,'_menu_item_object','page'),(12951,8058,'_menu_item_target',''),(12952,8058,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12953,8058,'_menu_item_xfn',''),(12954,8058,'_menu_item_url',''),(12958,8059,'_wp_page_template','default'),(12959,8059,'_elementor_edit_mode','builder'),(12960,8059,'_elementor_template_type','wp-page'),(12961,8059,'_elementor_version','3.15.3'),(12962,8059,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(12963,8059,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(12964,8059,'_elementor_pro_version','3.15.0'),(12965,8059,'_elementor_css','a:6:{s:4:\"time\";i:1712096296;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12966,8060,'_wp_page_template','default'),(12967,8060,'_elementor_edit_mode','builder'),(12968,8060,'_elementor_template_type','wp-page'),(12969,8060,'_elementor_version','3.15.3'),(12970,8060,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e964189\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true},{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"c5aa90b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(12971,8060,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(12972,8060,'_elementor_pro_version','3.15.0'),(12973,8060,'_elementor_css','a:6:{s:4:\"time\";i:1712096296;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12974,8061,'_wp_page_template','default'),(12975,8061,'_elementor_edit_mode','builder'),(12976,8061,'_elementor_template_type','wp-page'),(12977,8061,'_elementor_version','3.15.3');
INSERT INTO `wpsl_postmeta` VALUES (12978,8061,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p><strong>Lorem Ipsum<\\/strong> is simply dummy text of the printing and typesetting industry.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(12979,8061,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(12980,8061,'_elementor_pro_version','3.15.0'),(12981,8061,'_elementor_css','a:6:{s:4:\"time\";i:1712096296;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12983,8062,'_wp_page_template','default'),(12984,8062,'_elementor_edit_mode','builder'),(12985,8062,'_elementor_template_type','wp-page'),(12986,8062,'_elementor_version','3.15.3'),(12987,8062,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p><strong>Lorem Ipsum<\\/strong> is simply dummy text of the printing and typesetting industry.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(12988,8062,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(12989,8062,'_elementor_pro_version','3.15.0'),(12990,8063,'_wp_page_template','default'),(12991,8063,'_elementor_edit_mode','builder'),(12992,8063,'_elementor_template_type','wp-page'),(12993,8063,'_elementor_version','3.15.3'),(12994,8063,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p><strong>Lorem Ipsum<\\/strong> is simply dummy text of the printing and typesetting industry.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(12995,8063,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(12996,8063,'_elementor_pro_version','3.15.0'),(12997,8064,'_wp_page_template','default'),(12998,8064,'_elementor_edit_mode','builder'),(12999,8064,'_elementor_template_type','wp-page'),(13000,8064,'_elementor_version','3.15.3'),(13001,8064,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p><strong>Lorem Ipsum<\\/strong> is simply dummy text of the printing and typesetting industry.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13002,8064,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13003,8064,'_elementor_pro_version','3.15.0'),(13006,7390,'_elementor_css','a:6:{s:4:\"time\";i:1712099815;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"88cbdb3\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13007,8065,'_wp_page_template','default'),(13008,8065,'_elementor_edit_mode','builder'),(13009,8065,'_elementor_template_type','wp-page'),(13010,8065,'_elementor_version','3.15.3'),(13011,8065,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p><strong>Lorem Ipsum<\\/strong> is simply dummy text of the printing and typesetting industry.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13012,8065,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13013,8065,'_elementor_pro_version','3.15.0'),(13014,8065,'_elementor_css','a:6:{s:4:\"time\";i:1712099814;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13015,8066,'_wp_page_template','default'),(13016,8066,'_elementor_edit_mode','builder'),(13017,8066,'_elementor_template_type','wp-page'),(13018,8066,'_elementor_version','3.15.3'),(13019,8066,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p><strong>Lorem Ipsum<\\/strong> is simply dummy text of the printing and typesetting industry.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13020,8066,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13021,8066,'_elementor_pro_version','3.15.0'),(13022,8066,'_elementor_css','a:6:{s:4:\"time\";i:1712099814;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13023,8067,'_wp_page_template','default'),(13024,8067,'_elementor_edit_mode','builder'),(13025,8067,'_elementor_template_type','wp-page'),(13026,8067,'_elementor_version','3.15.3'),(13027,8067,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" by Cicero, written in 45 BC.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13028,8067,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13029,8067,'_elementor_pro_version','3.15.0'),(13030,8067,'_elementor_css','a:6:{s:4:\"time\";i:1712099814;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13033,8068,'_elementor_source','post'),(13034,8068,'_elementor_edit_mode','builder'),(13035,8068,'_elementor_template_type','popup'),(13036,8068,'_elementor_version','3.15.3'),(13037,8068,'_elementor_pro_version','3.15.0'),(13038,8068,'_wp_page_template','default'),(13039,8068,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent;\\nposition: relative;\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93e7feb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(13040,8068,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(13041,8068,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(13042,8068,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(13043,8068,'_elementor_css','a:6:{s:4:\"time\";i:1712099144;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13046,6535,'_elementor_css','a:6:{s:4:\"time\";i:1712116097;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13058,8070,'_elementor_source','post'),(13059,8070,'_elementor_edit_mode','builder'),(13060,8070,'_elementor_template_type','popup'),(13061,8070,'_elementor_version','3.15.3'),(13062,8070,'_elementor_pro_version','3.15.0'),(13063,8070,'_wp_page_template','default'),(13064,8070,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent;\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93e7feb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(13065,8070,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(13066,8070,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(13067,8070,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(13068,8070,'_elementor_css','a:6:{s:4:\"time\";i:1712100104;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13071,8071,'_elementor_source','post'),(13072,8071,'_elementor_edit_mode','builder'),(13073,8071,'_elementor_template_type','popup'),(13074,8071,'_elementor_version','3.15.3'),(13075,8071,'_elementor_pro_version','3.15.0'),(13076,8071,'_wp_page_template','default'),(13077,8071,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent;\\nposition: relative !important;\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"415f085\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dc3c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5b8e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0d1cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"375b177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93e7feb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(13078,8071,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(13079,8071,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(13080,8071,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(13081,8071,'_elementor_css','a:6:{s:4:\"time\";i:1712122788;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13084,8072,'_elementor_source','post'),(13085,8072,'_elementor_edit_mode','builder'),(13086,8072,'_elementor_template_type','popup'),(13087,8072,'_elementor_version','3.15.3'),(13088,8072,'_elementor_pro_version','3.15.0'),(13089,8072,'_wp_page_template','default'),(13090,8072,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":0,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent;\\nposition: relative !important;\\n}\\n\\n.child-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"d89f664\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"space_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"838578c\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"css_classes\":\"child-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent;\\nposition: relative !important;\\n}\\n\\n.container-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"b2ae2a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7d51fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b62055c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"438b982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f19fdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"846d6bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(13091,8072,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(13092,8072,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(13093,8072,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(13094,8072,'_elementor_css','a:6:{s:4:\"time\";i:1712122938;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13097,8073,'_elementor_source','post'),(13098,8073,'_elementor_edit_mode','builder'),(13099,8073,'_elementor_template_type','popup'),(13100,8073,'_elementor_version','3.15.3'),(13101,8073,'_elementor_pro_version','3.15.0'),(13102,8073,'_wp_page_template','default'),(13103,8073,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":0,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent;\\nposition: relative !important;\\n}\\n\\n.child-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"d89f664\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"space_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"838578c\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"css_classes\":\"child-menu-managed-services\",\"custom_css\":\"\\\\\"},\"elements\":[{\"id\":\"b2ae2a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7d51fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b62055c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"438b982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f19fdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"846d6bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(13104,8073,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(13105,8073,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(13106,8073,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(13107,8073,'_elementor_css','a:6:{s:4:\"time\";i:1712123529;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13110,8074,'_elementor_source','post'),(13111,8074,'_elementor_edit_mode','builder'),(13112,8074,'_elementor_template_type','popup'),(13113,8074,'_elementor_version','3.15.3'),(13114,8074,'_elementor_pro_version','3.15.0'),(13115,8074,'_wp_page_template','default'),(13116,8074,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":0,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent !important;\\nposition: relative !important;\\n}\\n\\n.child-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"d89f664\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"space_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"838578c\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"css_classes\":\"child-menu-managed-services\",\"custom_css\":\"\\\\\"},\"elements\":[{\"id\":\"b2ae2a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7d51fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b62055c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"438b982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f19fdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"846d6bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(13117,8074,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(13118,8074,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(13119,8074,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(13120,8074,'_elementor_css','a:6:{s:4:\"time\";i:1712123574;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13123,8075,'_elementor_source','post'),(13124,8075,'_elementor_edit_mode','builder'),(13125,8075,'_elementor_template_type','popup'),(13126,8075,'_elementor_version','3.15.3'),(13127,8075,'_elementor_pro_version','3.15.0'),(13128,8075,'_wp_page_template','default'),(13129,8075,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":0,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\"},\"elements\":[{\"id\":\"d89f664\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"space_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"838578c\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"css_classes\":\"child-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent !important;\\nposition: relative !important;\\n}\\n\\n.child-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"b2ae2a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7d51fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b62055c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"438b982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f19fdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"846d6bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(13130,8075,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(13131,8075,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(13132,8075,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(13133,8075,'_elementor_css','a:6:{s:4:\"time\";i:1712123658;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13136,8076,'_elementor_source','post'),(13137,8076,'_elementor_edit_mode','builder'),(13138,8076,'_elementor_template_type','popup'),(13139,8076,'_elementor_version','3.15.3'),(13140,8076,'_elementor_pro_version','3.15.0'),(13141,8076,'_wp_page_template','default'),(13142,8076,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":0,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":1.9,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\"},\"elements\":[{\"id\":\"d89f664\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"space_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"838578c\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"css_classes\":\"child-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent !important;\\nposition: relative !important;\\n}\\n\\n.child-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"b2ae2a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7d51fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b62055c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"438b982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f19fdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"846d6bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(13143,8076,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(13144,8076,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(13145,8076,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(13146,8076,'_elementor_css','a:6:{s:4:\"time\";i:1712123770;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13149,8077,'_elementor_source','post'),(13150,8077,'_elementor_edit_mode','builder'),(13151,8077,'_elementor_template_type','popup'),(13152,8077,'_elementor_version','3.15.3'),(13153,8077,'_elementor_pro_version','3.15.0'),(13154,8077,'_wp_page_template','default'),(13155,8077,'_elementor_data','[{\"id\":\"d9e0730\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":0,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"position\":\"fixed\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"z_index\":99999,\"css_classes\":\"container-menu-managed-services\"},\"elements\":[{\"id\":\"d89f664\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"space_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"838578c\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":173,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeInDown\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"css_classes\":\"child-menu-managed-services\",\"custom_css\":\"#elementor-popup-modal-8022 {\\nbackground-color: transparent !important;\\nposition: relative !important;\\n}\\n\\n.child-menu-managed-services {\\nbox-shadow: 0 1px 3px 0 rgb(0 0 0 \\/ 0.1), 0 1px 2px -1px rgb(0 0 0 \\/ 0.1);\\n}\\n\\n.container-menu-managed-services .elementor-heading-title:hover {\\n    text-decoration: underline;\\n    color: #4782c8 !important;\\n}\\n\\n.dialog-close-button {\\n    display: none !important;\\n}\"},\"elements\":[{\"id\":\"b2ae2a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cloud\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7d51fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Experience\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b62055c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unified Communication\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"438b982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infrastructure\",\"link\":{\"url\":\"https:\\/\\/esigo.co\\/managed-services\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f19fdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enterprise Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"846d6bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Public Safety & Security\",\"link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(13156,8077,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(13157,8077,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:0:{}}'),(13158,8077,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(13159,8077,'_elementor_css','a:6:{s:4:\"time\";i:1712124158;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13160,8022,'_elementor_controls_usage','a:3:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:6;s:4:\"link\";i:6;s:11:\"header_size\";i:6;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:6;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:11:\"boxed_width\";i:2;s:14:\"flex_direction\";i:2;s:16:\"flex_align_items\";i:2;s:8:\"flex_gap\";i:2;s:13:\"content_width\";i:2;s:20:\"flex_justify_content\";i:2;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:9:{s:7:\"padding\";i:2;s:6:\"margin\";i:2;s:21:\"_offset_orientation_h\";i:2;s:9:\"_offset_x\";i:2;s:13:\"_offset_x_end\";i:2;s:9:\"_offset_y\";i:2;s:11:\"css_classes\";i:2;s:8:\"position\";i:1;s:7:\"z_index\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}}}}}'),(13161,8022,'_elementor_css','a:6:{s:4:\"time\";i:1712124301;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13171,8080,'_wp_page_template','default'),(13172,8080,'_elementor_edit_mode','builder'),(13173,8080,'_elementor_template_type','wp-page'),(13174,8080,'_elementor_version','3.15.3'),(13175,8080,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" by Cicero, written in 45 BC.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13176,8080,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13177,8080,'_elementor_pro_version','3.15.0'),(13178,8081,'_wp_page_template','default'),(13179,8081,'_elementor_edit_mode','builder'),(13180,8081,'_elementor_template_type','wp-page'),(13181,8081,'_elementor_version','3.15.3'),(13182,8081,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" by Cicero, written in 45 BC.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13183,8081,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13184,8081,'_elementor_pro_version','3.15.0'),(13185,8082,'_wp_page_template','default'),(13186,8082,'_elementor_edit_mode','builder'),(13187,8082,'_elementor_template_type','wp-page'),(13188,8082,'_elementor_version','3.15.3'),(13189,8082,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13190,8082,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13191,8082,'_elementor_pro_version','3.15.0'),(13193,8083,'_wp_attached_file','2024/04/public-safety.png'),(13194,8083,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2024/04/public-safety.png\";s:8:\"filesize\";i:19234;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"public-safety-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10847;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"public-safety-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4939;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:25:\"public-safety-354x455.png\";s:5:\"width\";i:354;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16353;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:25:\"public-safety-355x345.png\";s:5:\"width\";i:355;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13036;}s:24:\"bizmax-blog-single-thumb\";a:5:{s:4:\"file\";s:25:\"public-safety-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13004;}}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:{}}}'),(13195,8084,'_wp_attached_file','2024/04/pss.jpg'),(13196,8084,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:602;s:6:\"height\";i:337;s:4:\"file\";s:15:\"2024/04/pss.jpg\";s:8:\"filesize\";i:77687;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"pss-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14663;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"pss-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7084;}s:17:\"bizmax-team-thumb\";a:5:{s:4:\"file\";s:15:\"pss-354x337.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34098;}s:17:\"bizmax-blog-thumb\";a:5:{s:4:\"file\";s:15:\"pss-355x337.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34022;}}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:{}}}'),(13197,8085,'_wp_page_template','default'),(13198,8085,'_elementor_edit_mode','builder'),(13199,8085,'_elementor_template_type','wp-page'),(13200,8085,'_elementor_version','3.15.3'),(13201,8085,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13202,8085,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13203,8085,'_elementor_pro_version','3.15.0'),(13204,8086,'_wp_page_template','default'),(13205,8086,'_elementor_edit_mode','builder'),(13206,8086,'_elementor_template_type','wp-page'),(13207,8086,'_elementor_version','3.15.3'),(13208,8086,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13209,8086,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13210,8086,'_elementor_pro_version','3.15.0'),(13211,8087,'_wp_page_template','default'),(13212,8087,'_elementor_edit_mode','builder'),(13213,8087,'_elementor_template_type','wp-page'),(13214,8087,'_elementor_version','3.15.3'),(13215,8087,'_elementor_data','[{\"id\":\"b5ed9f3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding_laptop\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6eaee55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"17e11e3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e7a315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"07e70fb\",\"elType\":\"widget\",\"settings\":{\"bizmax_section_label\":\"Our Service List\",\"bizmax_section_title\":\"Commited to Deliver Top  <br> Quality Services\",\"bizmax_stitle_style\":\"style-2\",\"bizmax_stitle_position\":\"text-center\"},\"elements\":[],\"widgetType\":\"bizmax-section-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dea122\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3011171\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"c02f04a\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Cloud\",\"bizmax_service_desc\":\"<p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1912951960-scaled.jpg\",\"id\":7549,\"size\":\"\",\"alt\":\"Cloud\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/cloud\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-04.png\",\"id\":7581,\"size\":\"\",\"alt\":\"cloud-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83e5a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"animation_delay\":600,\"hide_laptop\":\"hidden-laptop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"69a6ec4\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Customer Experience\",\"bizmax_service_desc\":\"<p>Managed services for contact center solutions are revolutionizing customer experience.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1074687401-scaled.jpg\",\"id\":7550,\"size\":\"\",\"alt\":\"Customer Experience\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/customer-experience\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-05.png\",\"id\":7582,\"size\":\"\",\"alt\":\"customer-experience-icons\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d7bc43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55bcf17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"fd085d9\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Unified Communications\",\"bizmax_service_desc\":\"<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/unified-communications\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-02.png\",\"id\":7585,\"size\":\"\",\"alt\":\"Unified Communications-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"83449f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"97c2843\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Infrastructure\",\"bizmax_service_desc\":\"<p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1062915266-scaled.jpg\",\"id\":7551,\"size\":\"\",\"alt\":\"Infrastructure\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/infrastructure\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-01.png\",\"id\":7583,\"size\":\"\",\"alt\":\"infrastructure-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"07f64cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ffd96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"4f153f7\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Enterprise Security\",\"bizmax_service_desc\":\"<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/enterprise-security\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Untitled-1-03.png\",\"id\":7584,\"size\":\"\",\"alt\":\"security-icon\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true},{\"id\":\"93fe9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"_inline_size_laptop\":33.33,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300},\"elements\":[{\"id\":\"b9d359e\",\"elType\":\"widget\",\"settings\":{\"bizmax_service_title\":\"Public Safety & Security\",\"bizmax_service_desc\":\"<p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.<\\/p>\",\"bizmax_service_thumb\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/pss.jpg\",\"id\":8084,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_btn_link\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/managed-services\\/public-safety-and-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"bizmax_icon_img\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/public-safety.png\",\"id\":8083,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a84e0a3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F2F3F7\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"94ec2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c9c0e2c\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"_id\":\"2447a38\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f2c814\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1414a57\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_4.svg\",\"id\":4719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2f75b77\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_5.svg\",\"id\":4721,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcb7dde\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_1.svg\",\"id\":4713,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"632614c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_3.svg\",\"id\":4717,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd7870e\"},{\"list_title\":\"Title #1\",\"list_content\":\"Brand Information\",\"bizmax_brand_logo\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/brand_2.svg\",\"id\":4715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_brand_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"398161b\"}],\"bizmax_slider_column\":\"5\",\"bizmax_slider_column_tab\":\"3\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"3500\",\"bizmax_slider_speed\":\"600\",\"bizmax_slider_dots\":\"\",\"bizmax_slider_nav\":\"\",\"bizmax_slider_column_large\":\"5\"},\"elements\":[],\"widgetType\":\"bizmax-brand-logos\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3165bf5\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeIn\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c0d3a6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6accbc2\",\"elType\":\"widget\",\"settings\":{\"bizmax_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"_id\":\"7e4198f\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8f98167\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Peter Johnson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_3.png\",\"id\":4708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web developer\",\"bizmax_author_rating\":\"4\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"8433052\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Max Lawrence\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_4.png\",\"id\":4709,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Digital marketing\",\"bizmax_author_rating\":\"5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"351ed26\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Darlene Robertson\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_1.png\",\"id\":4705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Web design\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"bd9e3ac\"},{\"list_title\":\"Title #1\",\"list_content\":\"Testimonial Info\",\"bizmax_author_name\":\"Carol McCarthy\",\"bizmax_author_thumb\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/avatar_2.png\",\"id\":4707,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_author_role\":\"Product manager\",\"bizmax_author_rating\":\"4.5\",\"bizmax_testimonial_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"bizmax_author_desc\":\"<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone<\\/p>\",\"_id\":\"26d4409\"}],\"bizmax_slider_column_large\":\"4\",\"bizmax_slider_column\":\"3\",\"bizmax_slider_column_tab\":\"2\",\"bizmax_slider_column_phone\":\"1\",\"bizmax_slider_autoplay_times\":\"4000\",\"bizmax_slider_speed\":\"600\",\"bizmax_sub_title\":\"Testimonial\",\"bizmax_title\":\"What They\\u2019re Saying?\",\"bizmax_slider_dots\":\"\",\"bizmax_title_desc\":\"<p class=\\\"m-0\\\">Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.<\\/p>\",\"bizmax_testimonial_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/testimonial_bg.jpeg\",\"id\":4797,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"bizmax-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(13216,8087,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(13217,8087,'_elementor_pro_version','3.15.0'),(13218,32,'_elementor_controls_usage','a:6:{s:20:\"bizmax-section-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:3:{s:20:\"bizmax_section_title\";i:1;s:19:\"bizmax_stitle_style\";i:1;s:22:\"bizmax_stitle_position\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:6;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:6;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:2;s:15:\"stretch_section\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;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:16:\"background_color\";i:1;}}}}s:15:\"bizmax-services\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:5:{s:20:\"bizmax_service_title\";i:6;s:19:\"bizmax_service_desc\";i:6;s:20:\"bizmax_service_thumb\";i:6;s:15:\"bizmax_btn_link\";i:6;s:15:\"bizmax_icon_img\";i:6;}}}}s:18:\"bizmax-brand-logos\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:1:{s:12:\"bizmax_lists\";i:1;}s:23:\"bizmax_settings_section\";a:5:{s:20:\"bizmax_slider_column\";i:1;s:24:\"bizmax_slider_column_tab\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;s:17:\"bizmax_slider_nav\";i:1;}}}}s:19:\"bizmax-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"bizmax_tab_one\";a:3:{s:12:\"bizmax_lists\";i:1;s:17:\"bizmax_title_desc\";i:1;s:21:\"bizmax_testimonial_bg\";i:1;}s:23:\"bizmax_settings_section\";a:4:{s:26:\"bizmax_slider_column_large\";i:1;s:20:\"bizmax_slider_column\";i:1;s:28:\"bizmax_slider_autoplay_times\";i:1;s:18:\"bizmax_slider_dots\";i:1;}}}}}'),(13219,8088,'_elementor_edit_mode','builder'),(13220,8088,'_elementor_template_type','wp-page'),(13221,8088,'_elementor_version','3.15.3'),(13222,8088,'_elementor_pro_version','3.15.0'),(13223,8088,'_wp_page_template','default'),(13224,8088,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><strong>Lorem Ipsum<\\/strong>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13225,8088,'_elementor_page_assets','a:0:{}'),(13226,8088,'_elementor_css','a:6:{s:4:\"time\";i:1712099549;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13227,8089,'_elementor_edit_mode','builder'),(13228,8089,'_elementor_template_type','wp-page'),(13229,8089,'_elementor_version','3.15.3'),(13230,8089,'_elementor_pro_version','3.15.0'),(13231,8089,'_wp_page_template','default'),(13232,8089,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1669180291-scaled.jpg\",\"id\":7553,\"size\":\"\",\"alt\":\"Security\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><strong>Lorem Ipsum<\\/strong>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13233,8089,'_elementor_page_assets','a:0:{}'),(13234,8089,'_elementor_css','a:6:{s:4:\"time\";i:1712099549;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13235,8090,'_elementor_edit_mode','builder'),(13236,8090,'_elementor_template_type','wp-page'),(13237,8090,'_elementor_version','3.15.3'),(13238,8090,'_elementor_pro_version','3.15.0'),(13239,8090,'_wp_page_template','default'),(13240,8090,'_elementor_data','[{\"id\":\"6716619\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76de139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8b14a53\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"837e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e81c4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e8d886\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"a18e0c2\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"4789937\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73fa752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5904dcd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/pss.jpg\",\"id\":8084,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bf6b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e6f825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions. These integrated systems enable seamless communication and coordination among first responders, law enforcement, and public safety agencies, ensuring swift and efficient responses to emergencies and threats. Through unified communication, critical information can be shared instantly across different platforms and devices, breaking down barriers between agencies and enabling collaborative decision-making. Surveillance systems play a crucial role in monitoring public spaces, identifying potential threats, and providing real-time data that enhances situational awareness. Meanwhile, command and control systems integrate this information, offering a centralised hub for decision-making and resource allocation. By leveraging advanced technologies such as artificial intelligence and data analytics, these systems can predict potential incidents, optimise response strategies, and ensure that the right resources are deployed at the right time. Together, unified communication, surveillance, and command and control systems offer a holistic approach to public safety, enhancing the ability of cities and communities to protect their citizens and respond effectively\\u00a0to\\u00a0any\\u00a0crisis.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e8451a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partners\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb2050e\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"_id\":\"6248c09\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Morphisec_Logo.jpg\",\"id\":7376,\"size\":\"\",\"alt\":\"Morphisec Logo\",\"source\":\"library\"},\"bizmax_title\":\"\"},{\"list_title\":\"Title #1\",\"list_content\":\"List Info\",\"bizmax_img_icon\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/Microsoft-Logo.wine_.svg\",\"id\":7380,\"size\":\"\",\"alt\":\"Microsoft-Logo.wine\",\"source\":\"library\"},\"bizmax_title\":\"\",\"_id\":\"28e3ebe\"}],\"_css_classes\":\"partner-logo\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail-feature\"},{\"id\":\"c21b8d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a4eada\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f9f9a82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1001e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6c31a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6f967a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36bf726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a9fd9b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b952e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5332a6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b5f6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"574ad71\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13241,8090,'_elementor_page_assets','a:0:{}'),(13242,8090,'_elementor_css','a:6:{s:4:\"time\";i:1712099549;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13243,8052,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;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:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:29:\"bizmax-service-detail-feature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(13244,7292,'_elementor_css','a:6:{s:4:\"time\";i:1712646364;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13245,7300,'_elementor_css','a:6:{s:4:\"time\";i:1712646490;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13246,8091,'_elementor_edit_mode','builder'),(13247,8091,'_elementor_template_type','wp-page'),(13248,8091,'_elementor_version','3.15.3'),(13249,8091,'_elementor_pro_version','3.15.0'),(13250,8091,'_wp_page_template','default'),(13251,8091,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13252,8091,'_elementor_page_assets','a:0:{}'),(13253,8091,'_elementor_css','a:6:{s:4:\"time\";i:1712099366;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13254,8092,'_elementor_edit_mode','builder'),(13255,8092,'_elementor_template_type','wp-page'),(13256,8092,'_elementor_version','3.15.3'),(13257,8092,'_elementor_pro_version','3.15.0'),(13258,8092,'_wp_page_template','default'),(13259,8092,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13260,8092,'_elementor_page_assets','a:0:{}'),(13261,8092,'_elementor_css','a:6:{s:4:\"time\";i:1712099366;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13262,8093,'_elementor_edit_mode','builder'),(13263,8093,'_elementor_template_type','wp-page'),(13264,8093,'_elementor_version','3.15.3'),(13265,8093,'_elementor_pro_version','3.15.0'),(13266,8093,'_wp_page_template','default'),(13267,8093,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e5a2897\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Management Portal for Related Services<\\/strong><\\/p><p>Hosted PSTN \\u00a0Services for Zoom - <a href=\\\"https:\\/\\/zoom.esigo.co\\\">https:\\/\\/zoom.esigo.co<\\/a><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13268,8093,'_elementor_page_assets','a:0:{}'),(13269,8093,'_elementor_css','a:6:{s:4:\"time\";i:1712099366;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13271,32,'_elementor_css','a:6:{s:4:\"time\";i:1712647639;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13272,8052,'_elementor_css','a:6:{s:4:\"time\";i:1712647676;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13286,8096,'_wp_attached_file','2024/04/Picture1.png'),(13287,8096,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:305;s:6:\"height\";i:305;s:4:\"file\";s:20:\"2024/04/Picture1.png\";s:8:\"filesize\";i:14281;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Picture1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24131;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10657;}s:24:\"elementor_custom_500x500\";a:4:{s:4:\"file\";s:37:\"elementor/thumbs/Picture1-150x150.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"elementor_custom_300x300\";a:4:{s:4:\"file\";s:72:\"elementor/thumbs/Picture1-qmkx0vdfek470jbygtq39uirxd7revn81ekpvvukl4.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"elementor_custom_200x200\";a:4:{s:4:\"file\";s:72:\"elementor/thumbs/Picture1-qmkx0vde6pbrej681wux5roew104r4fi5lzjqhdck0.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"elementor_custom_150x150\";a:4:{s:4:\"file\";s:72:\"elementor/thumbs/Picture1-qmkx0vddkrxjlj3cugfc3q98dcwbf8tn7poyns4qjg.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(13288,8097,'_elementor_edit_mode','builder'),(13289,8097,'_elementor_template_type','wp-page'),(13290,8097,'_elementor_version','3.15.3'),(13291,8097,'_elementor_pro_version','3.15.0'),(13292,8097,'_wp_page_template','default'),(13293,8097,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e5a2897\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Management Portal for Related Services<\\/strong><\\/p><p>Hosted PSTN \\u00a0Services for Zoom - <a href=\\\"https:\\/\\/zoom.esigo.co\\\">https:\\/\\/zoom.esigo.co<\\/a><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13294,8097,'_elementor_page_assets','a:0:{}'),(13295,8098,'_elementor_edit_mode','builder'),(13296,8098,'_elementor_template_type','wp-page'),(13297,8098,'_elementor_version','3.15.3'),(13298,8098,'_elementor_pro_version','3.15.0'),(13299,8098,'_wp_page_template','default'),(13300,8098,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e5a2897\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Management Portal for Related Services<\\/strong><\\/p><p>Hosted PSTN \\u00a0Services for Zoom - <a href=\\\"https:\\/\\/zoom.esigo.co\\\">https:\\/\\/zoom.esigo.co<\\/a><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13301,8098,'_elementor_page_assets','a:0:{}'),(13302,8099,'_elementor_edit_mode','builder'),(13303,8099,'_elementor_template_type','wp-page'),(13304,8099,'_elementor_version','3.15.3'),(13305,8099,'_elementor_pro_version','3.15.0'),(13306,8099,'_wp_page_template','default'),(13307,8099,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13308,8099,'_elementor_page_assets','a:0:{}'),(13310,8100,'_elementor_edit_mode','builder'),(13311,8100,'_elementor_template_type','wp-page'),(13312,8100,'_elementor_version','3.15.3'),(13313,8100,'_elementor_pro_version','3.15.0'),(13314,8100,'_wp_page_template','default'),(13315,8100,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13316,8100,'_elementor_page_assets','a:0:{}'),(13317,8101,'_elementor_edit_mode','builder'),(13318,8101,'_elementor_template_type','wp-page'),(13319,8101,'_elementor_version','3.15.3'),(13320,8101,'_elementor_pro_version','3.15.0'),(13321,8101,'_wp_page_template','default'),(13322,8101,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13323,8101,'_elementor_page_assets','a:0:{}'),(13324,8102,'_elementor_edit_mode','builder'),(13325,8102,'_elementor_template_type','wp-page'),(13326,8102,'_elementor_version','3.15.3'),(13327,8102,'_elementor_pro_version','3.15.0'),(13328,8102,'_wp_page_template','default'),(13329,8102,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13330,8102,'_elementor_page_assets','a:0:{}'),(13332,8103,'_elementor_edit_mode','builder'),(13333,8103,'_elementor_template_type','wp-page'),(13334,8103,'_elementor_version','3.15.3'),(13335,8103,'_elementor_pro_version','3.15.0'),(13336,8103,'_wp_page_template','default'),(13337,8103,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13338,8103,'_elementor_page_assets','a:0:{}'),(13339,8104,'_elementor_edit_mode','builder'),(13340,8104,'_elementor_template_type','wp-page'),(13341,8104,'_elementor_version','3.15.3'),(13342,8104,'_elementor_pro_version','3.15.0'),(13343,8104,'_wp_page_template','default'),(13344,8104,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13345,8104,'_elementor_page_assets','a:0:{}'),(13346,8105,'_elementor_edit_mode','builder'),(13347,8105,'_elementor_template_type','wp-page'),(13348,8105,'_elementor_version','3.15.3'),(13349,8105,'_elementor_pro_version','3.15.0'),(13350,8105,'_wp_page_template','default'),(13351,8105,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13352,8105,'_elementor_page_assets','a:0:{}'),(13355,8106,'_elementor_edit_mode','builder'),(13356,8106,'_elementor_template_type','wp-page'),(13357,8106,'_elementor_version','3.15.3'),(13358,8106,'_elementor_pro_version','3.15.0'),(13359,8106,'_wp_page_template','default'),(13360,8106,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13361,8106,'_elementor_page_assets','a:0:{}'),(13362,8106,'_elementor_css','a:6:{s:4:\"time\";i:1712887959;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13363,8107,'_elementor_edit_mode','builder'),(13364,8107,'_elementor_template_type','wp-page'),(13365,8107,'_elementor_version','3.15.3'),(13366,8107,'_elementor_pro_version','3.15.0'),(13367,8107,'_wp_page_template','default'),(13368,8107,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13369,8107,'_elementor_page_assets','a:0:{}'),(13370,8107,'_elementor_css','a:6:{s:4:\"time\";i:1712887959;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13371,8108,'_elementor_edit_mode','builder'),(13372,8108,'_elementor_template_type','wp-page'),(13373,8108,'_elementor_version','3.15.3'),(13374,8108,'_elementor_pro_version','3.15.0'),(13375,8108,'_wp_page_template','default'),(13376,8108,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13377,8108,'_elementor_page_assets','a:0:{}'),(13378,8108,'_elementor_css','a:6:{s:4:\"time\";i:1712887959;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13381,8109,'_elementor_edit_mode','builder'),(13382,8109,'_elementor_template_type','wp-page'),(13383,8109,'_elementor_version','3.15.3'),(13384,8109,'_elementor_pro_version','3.15.0'),(13385,8109,'_wp_page_template','default'),(13386,8109,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13387,8109,'_elementor_page_assets','a:0:{}'),(13388,8109,'_elementor_css','a:6:{s:4:\"time\";i:1712888010;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13389,8110,'_elementor_edit_mode','builder'),(13390,8110,'_elementor_template_type','wp-page'),(13391,8110,'_elementor_version','3.15.3'),(13392,8110,'_elementor_pro_version','3.15.0'),(13393,8110,'_wp_page_template','default'),(13394,8110,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13395,8110,'_elementor_page_assets','a:0:{}'),(13396,8110,'_elementor_css','a:6:{s:4:\"time\";i:1712888010;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13397,8111,'_elementor_edit_mode','builder'),(13398,8111,'_elementor_template_type','wp-page'),(13399,8111,'_elementor_version','3.15.3'),(13400,8111,'_elementor_pro_version','3.15.0'),(13401,8111,'_wp_page_template','default'),(13402,8111,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"300\",\"height\":\"300\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13403,8111,'_elementor_page_assets','a:0:{}'),(13404,8111,'_elementor_css','a:6:{s:4:\"time\";i:1712888010;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13407,8112,'_elementor_edit_mode','builder'),(13408,8112,'_elementor_template_type','wp-page'),(13409,8112,'_elementor_version','3.15.3'),(13410,8112,'_elementor_pro_version','3.15.0'),(13411,8112,'_wp_page_template','default'),(13412,8112,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"300\",\"height\":\"300\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13413,8112,'_elementor_page_assets','a:0:{}'),(13414,8112,'_elementor_css','a:6:{s:4:\"time\";i:1712888031;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13415,8113,'_elementor_edit_mode','builder'),(13416,8113,'_elementor_template_type','wp-page'),(13417,8113,'_elementor_version','3.15.3'),(13418,8113,'_elementor_pro_version','3.15.0'),(13419,8113,'_wp_page_template','default'),(13420,8113,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"300\",\"height\":\"300\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13421,8113,'_elementor_page_assets','a:0:{}'),(13422,8113,'_elementor_css','a:6:{s:4:\"time\";i:1712888031;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13423,8114,'_elementor_edit_mode','builder'),(13424,8114,'_elementor_template_type','wp-page'),(13425,8114,'_elementor_version','3.15.3'),(13426,8114,'_elementor_pro_version','3.15.0'),(13427,8114,'_wp_page_template','default'),(13428,8114,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"200\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13429,8114,'_elementor_page_assets','a:0:{}'),(13430,8114,'_elementor_css','a:6:{s:4:\"time\";i:1712888031;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13433,8115,'_elementor_edit_mode','builder'),(13434,8115,'_elementor_template_type','wp-page'),(13435,8115,'_elementor_version','3.15.3'),(13436,8115,'_elementor_pro_version','3.15.0'),(13437,8115,'_wp_page_template','default'),(13438,8115,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"200\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13439,8115,'_elementor_page_assets','a:0:{}'),(13440,8115,'_elementor_css','a:6:{s:4:\"time\";i:1712888053;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13441,8116,'_elementor_edit_mode','builder'),(13442,8116,'_elementor_template_type','wp-page'),(13443,8116,'_elementor_version','3.15.3'),(13444,8116,'_elementor_pro_version','3.15.0'),(13445,8116,'_wp_page_template','default'),(13446,8116,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"200\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13447,8116,'_elementor_page_assets','a:0:{}'),(13448,8116,'_elementor_css','a:6:{s:4:\"time\";i:1712888053;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13449,8117,'_elementor_edit_mode','builder'),(13450,8117,'_elementor_template_type','wp-page'),(13451,8117,'_elementor_version','3.15.3'),(13452,8117,'_elementor_pro_version','3.15.0'),(13453,8117,'_wp_page_template','default'),(13454,8117,'_elementor_data','[{\"id\":\"b4a0fc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de3d5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"38b150a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a5be968\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d88d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"All SERVICES\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#004699\",\"text_stroke_text_stroke_type\":\"yes\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5c2543\",\"elType\":\"widget\",\"settings\":{\"menu\":\"services-menu\",\"schema_support\":\"yes\",\"layout\":\"vertical\",\"submenu_icon\":\"plus\",\"link_redirect\":\"self_link\",\"dropdown\":\"none\",\"menu_space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"color_menu_item\":\"#004699\",\"bg_color_menu_item\":\"#DFEEFF\",\"color_menu_item_hover\":\"#F9FFFA\",\"bg_color_menu_item_hover\":\"#18191D\",\"color_menu_item_active\":\"#FFFDFD\",\"bg_color_menu_item_active\":\"#18191D\",\"toggle_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"400\",\"_css_classes\":\"service-menu-list\",\"_border_color\":\"#9B9B9B\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"e93e88a\",\"elType\":\"widget\",\"settings\":{\"bizmax_img_bg\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-list-card.jpeg\",\"id\":4784,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_img_icon\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/1-2.png\",\"id\":5640,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bizmax_title\":\"Have Any Query Feel Free Contact\",\"bizmax_btn_text\":\"Contact Us\",\"bizmax_btn_link\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-service-detail\"},{\"id\":\"566242b\",\"elType\":\"widget\",\"settings\":{\"form_id\":\"5650\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"bizmax-contact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74f0bb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfed4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/09\\/shutterstock_1851636526-scaled.jpg\",\"id\":7554,\"size\":\"\",\"alt\":\"Unified Communications\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.154},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62126cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business & finance\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0078c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p4\\\"><span class=\\\"s2\\\"><span lang=\\\"EN-SG\\\">Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO\\u2019s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.<\\/span><\\/span><\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"860cf5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2023\\/10\\/unified-communication.jpg\",\"id\":7725,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"bizmax-blog-thumb\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"09e7174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Management Portal for Related Services\",\"title_color\":\"#0D6678\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99cf427\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/esigo.futuremediatrix.com\\/wp-content\\/uploads\\/2024\\/04\\/Picture1.png\",\"id\":8096,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"150\"},\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/zoom.esigo.co\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59cd027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<blockquote><p>\\u201c Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text \\u201d<\\/p><\\/blockquote>\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9c0c7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6475bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"a12080d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bizmax.laralink.com\\/wp-content\\/uploads\\/2023\\/07\\/service-details-img-2.jpeg\",\"id\":4783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"36614fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"40f085a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our benefits\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4946347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.<\\/p>\",\"text_color\":\"#666666\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"98e4a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"507618a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ea6a8c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"frequently asked questions\",\"title_color\":\"#4782C8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7e5821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Questions & Answers\",\"title_color\":\"#18191D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c41a2f3\",\"elType\":\"widget\",\"settings\":{\"c_lists\":[{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"_id\":\"b2872b9\",\"bizmax_active\":\"show\",\"bizmax_title\":\"What services does your business provide?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How much do your services cost?\",\"bizmax_content\":\"\\n\\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\\n\",\"_id\":\"b7dabae\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"Do you offer any guarantees or refunds?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"466af7c\"},{\"list_title\":\"Title #1\",\"list_content\":\"Feature Information\",\"bizmax_title\":\"How do I get started with your services?\",\"bizmax_content\":\"<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.<\\/p>\",\"_id\":\"899956c\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"bizmax-faq\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(13455,8117,'_elementor_page_assets','a:0:{}'),(13456,8117,'_elementor_css','a:6:{s:4:\"time\";i:1712888053;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13457,7315,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_menu\";a:2:{s:4:\"menu\";i:1;s:14:\"schema_support\";i:1;}s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:12:\"submenu_icon\";i:1;s:13:\"link_redirect\";i:1;s:8:\"dropdown\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_style_main-menu\";a:11:{s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:18:\"bg_color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:24:\"bg_color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:25:\"bg_color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}s:12:\"style_toggle\";a:3:{s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:21:\"bizmax-service-detail\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:4:{s:13:\"bizmax_img_bg\";i:1;s:15:\"bizmax_img_icon\";i:1;s:15:\"bizmax_btn_text\";i:1;s:15:\"bizmax_btn_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:14:\"bizmax-contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"bizmax_tab_one\";a:1:{s:7:\"form_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}}}s:5:\"image\";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_image\";a:6:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}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:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:10:\"bizmax-faq\";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:\"bizmax_tab_one\";a:1:{s:7:\"c_lists\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(13458,7315,'_elementor_css','a:6:{s:4:\"time\";i:1712888082;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13459,7790,'_elementor_css','a:6:{s:4:\"time\";i:1717315761;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13460,7249,'_elementor_css','a:7:{s:4:\"time\";i:1717315762;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(13464,6923,'_elementor_css','a:6:{s:4:\"time\";i:1717315762;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13465,6917,'_elementor_css','a:6:{s:4:\"time\";i:1717315762;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13466,6911,'_elementor_css','a:6:{s:4:\"time\";i:1717315762;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13467,7243,'_elementor_css','a:7:{s:4:\"time\";i:1717315762;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(13468,7235,'_elementor_css','a:7:{s:4:\"time\";i:1717315762;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(13469,6883,'_elementor_css','a:6:{s:4:\"time\";i:1717315762;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13470,7218,'_elementor_css','a:7:{s:4:\"time\";i:1717315762;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(13471,30,'_elementor_css','a:6:{s:4:\"time\";i:1717315826;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wpsl_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_posts`
--

DROP TABLE IF EXISTS `wpsl_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=8119 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_posts`
--

LOCK TABLES `wpsl_posts` WRITE;
/*!40000 ALTER TABLE `wpsl_posts` DISABLE KEYS */;
INSERT INTO `wpsl_posts` VALUES (4,0,'2023-08-23 03:24:32','2023-08-23 03:24:32','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2023-08-23 03:24:32','2023-08-23 03:24:32','',0,'https://esigo.futuremediatrix.com/2023/08/23/navigation/',0,'wp_navigation','',0),(6,1,'2023-07-15 21:33:15','2023-07-15 21:33:15','','Default Kit','','publish','closed','closed','','default-kit-2','','','2023-07-15 21:33:15','2023-07-15 21:33:15','',0,'https://bizmax.laralink.com/?p=6',0,'elementor_library','',0),(8,1,'2023-08-23 03:59:24','2023-08-23 03:59:24','','Default Kit','','publish','closed','closed','','default-kit','','','2024-04-03 05:10:44','2024-04-02 21:10:44','',0,'https://esigo.futuremediatrix.com/?p=8',0,'elementor_library','',0),(9,1,'2023-08-23 04:01:26','2023-08-23 04:01:26','','One Click Demo Import - log_file_2023-08-23__04-01-26','','inherit','open','closed','','one-click-demo-import-log_file_2023-08-23__04-01-26','','','2023-08-23 04:01:26','2023-08-23 04:01:26','',0,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/log_file_2023-08-23__04-01-26.txt',0,'attachment','text/plain',0),(17,1,'2023-03-12 07:19:00','2023-03-12 07:19:00','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','publish','closed','closed','','homepage-v1','','','2024-02-26 17:18:53','2024-02-26 09:18:53','',0,'https://ordainit.com/wp-theme/sorex/?page_id=17',0,'page','',0),(30,1,'2023-03-12 08:42:27','2023-03-12 08:42:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore Experience Centre<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p>~ Singapore Office<br />33 Ubi Ave 3<br />#05-70 Vertex<br />Singapore 408868</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p> </p><p>~ Hong Kong<br />Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong<br /></p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />Level 18, Unit 15, Menara K1, No. 1<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Lorong 3/137C, Off Jalan Kelang Lama,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58000, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br />11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br /></b>3F.-13, No. 79,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p><p>New Taipei City 22101, Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p> </p>','About Us','','publish','closed','closed','','about-us','','','2024-03-28 16:50:20','2024-03-28 08:50:20','',0,'https://ordainit.com/wp-theme/sorex/?page_id=30',0,'page','',0),(32,1,'2023-03-12 08:42:42','2023-03-12 08:42:42','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/public-safety.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','publish','closed','closed','','managed-services','','','2024-04-09 15:01:30','2024-04-09 07:01:30','',0,'https://ordainit.com/wp-theme/sorex/?page_id=32',0,'page','',0),(64,1,'2023-03-12 08:49:00','2023-03-12 08:49:00','<a href=\"https://bizmax.laralink.com/2023/07/30/introducing-the-latest-tech-features-for-you/\">\r\n							</a>\r\n						<ul>\r\n							<li>\r\n								 By:  \r\n								<a href=\"\">bizmax</a>\r\n							</li>\r\n							<li>\r\n								 July 30, 2023\r\n							</li>\r\n							<li>\r\n								<a href=\"#\">0 comments</a>\r\n							</li>\r\n						</ul>\r\n						<h2><a href=\"https://bizmax.laralink.com/2023/07/30/introducing-the-latest-tech-features-for-you/\">Introducing the latest tech features for you</a></h2>\r\n						What services does your business provide? There are many variations of passages of Lorem Ipsum available, but majority have suffered alteration in some form,\r\n						<a href=\"https://bizmax.laralink.com/2023/07/30/introducing-the-latest-tech-features-for-you/\">\r\n							Read More\r\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\r\n								</svg>  \r\n						</a>\r\n							<a href=\"https://bizmax.laralink.com/2023/07/30/the-honest-way-to-achievement-your-goal/\">\r\n							</a>\r\n						<ul>\r\n							<li>\r\n								 By:  \r\n								<a href=\"\">bizmax</a>\r\n							</li>\r\n							<li>\r\n								 July 30, 2023\r\n							</li>\r\n							<li>\r\n								<a href=\"#\">0 comments</a>\r\n							</li>\r\n						</ul>\r\n						<h2><a href=\"https://bizmax.laralink.com/2023/07/30/the-honest-way-to-achievement-your-goal/\">The Honest Way to Achievement your goal!</a></h2>\r\n						What services does your business provide? There are many variations of passages of Lorem Ipsum available, but majority have suffered alteration in some form,\r\n						<a href=\"https://bizmax.laralink.com/2023/07/30/the-honest-way-to-achievement-your-goal/\">\r\n							Read More\r\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\r\n								</svg>  \r\n						</a>\r\n							<a href=\"https://bizmax.laralink.com/2023/07/30/how-to-start-your-own-business-with-no-risk/\">\r\n							</a>\r\n						<ul>\r\n							<li>\r\n								 By:  \r\n								<a href=\"\">bizmax</a>\r\n							</li>\r\n							<li>\r\n								 July 30, 2023\r\n							</li>\r\n							<li>\r\n								<a href=\"#\">0 comments</a>\r\n							</li>\r\n						</ul>\r\n						<h2><a href=\"https://bizmax.laralink.com/2023/07/30/how-to-start-your-own-business-with-no-risk/\">How to Start your own Business with no Risk?</a></h2>\r\n						What services does your business provide? There are many variations of passages of Lorem Ipsum available, but majority have suffered alteration in some form,\r\n						<a href=\"https://bizmax.laralink.com/2023/07/30/how-to-start-your-own-business-with-no-risk/\">\r\n							Read More\r\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\r\n								</svg>  \r\n						</a>\r\n							<a href=\"https://bizmax.laralink.com/2023/07/30/what-services-does-your-business-provide/\">\r\n							</a>\r\n						<ul>\r\n							<li>\r\n								 By:  \r\n								<a href=\"\">bizmax</a>\r\n							</li>\r\n							<li>\r\n								 July 30, 2023\r\n							</li>\r\n							<li>\r\n								<a href=\"#\">0 comments</a>\r\n							</li>\r\n						</ul>\r\n						<h2><a href=\"https://bizmax.laralink.com/2023/07/30/what-services-does-your-business-provide/\">What services does your business provide?</a></h2>\r\n						What services does your business provide? There are many variations of passages of Lorem Ipsum available, but majority have suffered alteration in some form,\r\n						<a href=\"https://bizmax.laralink.com/2023/07/30/what-services-does-your-business-provide/\">\r\n							Read More\r\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\r\n								</svg>  \r\n						</a>\r\n							<a href=\"https://bizmax.laralink.com/2023/07/30/best-teach-leading-features-for-business/\">\r\n							</a>\r\n						<ul>\r\n							<li>\r\n								 By:  \r\n								<a href=\"\">bizmax</a>\r\n							</li>\r\n							<li>\r\n								 July 30, 2023\r\n							</li>\r\n							<li>\r\n								<a href=\"#\">0 comments</a>\r\n							</li>\r\n						</ul>\r\n						<h2><a href=\"https://bizmax.laralink.com/2023/07/30/best-teach-leading-features-for-business/\">Best Teach Leading features for Business</a></h2>\r\n						What services does your business provide? There are many variations of passages of Lorem Ipsum available, but majority have suffered alteration in some form,\r\n						<a href=\"https://bizmax.laralink.com/2023/07/30/best-teach-leading-features-for-business/\">\r\n							Read More\r\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\r\n								</svg>  \r\n						</a>\r\n						<ul>1\r\n<a href=\"https://bizmax.laralink.com/wp-admin/admin-ajax.php?paged=2\">2</a>\r\n<a href=\"https://bizmax.laralink.com/wp-admin/admin-ajax.php?paged=2\">Next</a></ul>','Blog','','publish','closed','closed','','blog','','','2023-03-12 08:49:00','2023-03-12 08:49:00','',0,'https://ordainit.com/wp-theme/sorex/?page_id=64',0,'page','',0),(87,1,'2023-08-02 20:02:17','2023-03-16 20:03:52','','Services','','publish','closed','closed','','87','','','2023-08-02 20:02:17','2023-03-16 20:03:52','',0,'https://ordainit.com/wp-theme/sorex/?p=87',6,'nav_menu_item','',0),(756,1,'2023-08-02 20:02:17','2023-03-28 21:06:11','','Services','','publish','closed','closed','','about','','','2023-08-02 20:02:17','2023-03-28 21:06:11','',0,'https://ordainit.com/wp-theme/sorex/?p=756',5,'nav_menu_item','',0),(758,1,'2023-08-02 20:02:17','2023-03-28 21:06:11',' ','','','publish','closed','closed','','758','','','2023-08-02 20:02:17','2023-03-28 21:06:11','',0,'https://ordainit.com/wp-theme/sorex/?p=758',4,'nav_menu_item','',0),(760,1,'2023-08-02 20:02:17','2023-03-31 05:47:52','','Pages','','publish','closed','closed','','pages','','','2023-08-02 20:02:17','2023-03-31 05:47:52','',0,'https://ordainit.com/wp-theme/sorex/?p=760',11,'nav_menu_item','',0),(762,1,'2023-08-02 20:02:17','2023-03-31 06:28:23','','Blog','','publish','closed','closed','','blog','','','2023-08-02 20:02:17','2023-03-31 06:28:23','',0,'https://ordainit.com/wp-theme/sorex/?p=762',20,'nav_menu_item','',0),(763,1,'2023-08-02 20:02:17','2023-03-31 06:28:23','','Blog Grid','','publish','closed','closed','','blog-grid','','','2023-08-02 20:02:17','2023-03-31 06:28:23','',0,'https://ordainit.com/wp-theme/sorex/?p=763',21,'nav_menu_item','',0),(768,1,'2023-08-02 20:02:17','2023-03-31 06:32:47','','Portfolio','','publish','closed','closed','','portfolio','','','2023-08-02 20:02:17','2023-03-31 06:32:47','',0,'https://ordainit.com/wp-theme/sorex/?p=768',8,'nav_menu_item','',0),(1042,1,'2023-04-02 20:29:38','0000-00-00 00:00:00','','Footer','','draft','closed','closed','','','','','2023-04-02 20:29:38','0000-00-00 00:00:00','',0,'https://ordainit.com/wp-theme/sorex/?post_type=elementor_library&amp;p=1042',0,'elementor_library','',0),(1978,1,'2023-04-26 08:31:15','2023-04-26 08:31:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"229\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target262725\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1101797\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target809200\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2261169\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"27\"/></p>\n</form>','Cloud','','publish','closed','closed','','cloud','','','2023-09-21 04:28:16','2023-09-21 04:28:16','',32,'https://ordainit.com/wp-theme/sorex/job-details-copy/',0,'page','',0),(2018,1,'2023-08-02 20:02:17','2023-05-02 10:50:16','','Default Home Page','','publish','closed','closed','','2018','','','2023-08-02 20:02:17','2023-05-02 10:50:16','',0,'https://ordainit.com/wp-theme/sorex/?p=2018',2,'nav_menu_item','',0),(2019,1,'2023-08-02 20:02:17','2023-05-02 10:50:16','','Home','','publish','closed','closed','','home-2','','','2023-08-02 20:02:17','2023-05-02 10:50:16','',0,'https://ordainit.com/wp-theme/sorex/?p=2019',1,'nav_menu_item','',0),(2172,1,'2023-07-23 21:50:40','2023-07-23 21:50:40','<div class=\"cs_newsletter cs_style_1\">\r\n  <div class=\"cs_newsletter_form position-relative\">\r\n      <input type=\"email\" name=\"EMAIL\" class=\"cs_newsletter_input text-white cs_fs_14 cs_rounded_5 border-0 w-100 cs_pt_10\" placeholder=\"Enter your mail\" required />\r\n      <button class=\"cs_newsletter_btn cs_fs_14 cs_rounded_5 cs_transition_4 bg-accent position-absolute text-uppercase\">\r\n        <span>Go</span>\r\n      </button>\r\n  </div>\r\n</div>\r\n','newsletter','','publish','closed','closed','','newsletter','','','2023-07-23 21:50:40','2023-07-23 21:50:40','',0,'https://ordainit.com/wp-theme/sorex/mc4wp-form/newsletter/',0,'mc4wp-form','',0),(3014,1,'2023-08-02 20:02:17','2023-05-18 09:58:05','','Services Details','','publish','closed','closed','','3014','','','2023-08-02 20:02:17','2023-05-18 09:58:05','',0,'https://ordainit.com/wp-theme/sorex/?p=3014',7,'nav_menu_item','',0),(3304,1,'2023-03-12 05:51:48','2023-03-12 05:51:48','','Default Kit','','publish','closed','closed','','default-kit-2-2','','','2023-03-12 05:51:48','2023-03-12 05:51:48','',0,'https://ordainit.com/wp-theme/sorex/?p=7',0,'elementor_library','',0),(4144,1,'2023-06-08 05:40:27','2023-06-08 05:40:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+07045319507%20\">+ 070 4531 9507 </a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','publish','closed','closed','','footer','','','2023-08-25 04:23:17','2023-08-25 04:23:17','',0,'https://ordainit.com/wp-theme/sorex/?post_type=elementor-hf&#038;p=4144',0,'elementor-hf','',0),(4664,1,'2023-03-12 05:39:27','2023-03-12 05:39:27','{\"version\":2,\"isGlobalStylesUserThemeJSON\":true}','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentythree','','','2023-03-12 05:39:27','2023-03-12 05:39:27','',0,'https://ordainit.com/wp-theme/sorex/2023/03/12/wp-global-styles-twentytwentythree/',0,'wp_global_styles','',0),(4703,1,'2023-07-16 07:52:45','2023-07-16 07:52:45','','about_img_1','','inherit','open','closed','','about_img_1','','','2023-07-16 07:52:45','2023-07-16 07:52:45','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/about_img_1.png',0,'attachment','image/png',0),(4704,1,'2023-07-16 07:52:47','2023-07-16 07:52:47','','arrow_shape','','inherit','open','closed','','arrow_shape','','','2023-07-16 07:52:47','2023-07-16 07:52:47','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png',0,'attachment','image/png',0),(4705,1,'2023-07-16 07:52:48','2023-07-16 07:52:48','','avatar_1','','inherit','open','closed','','avatar_1','','','2023-07-16 07:52:48','2023-07-16 07:52:48','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png',0,'attachment','image/png',0),(4706,1,'2023-07-16 07:52:49','2023-07-16 07:52:49','','avatar_2','','inherit','open','closed','','avatar_2','','','2023-07-16 07:52:49','2023-07-16 07:52:49','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.jpeg',0,'attachment','image/jpeg',0),(4707,1,'2023-07-16 07:52:52','2023-07-16 07:52:52','','avatar_2','','inherit','open','closed','','avatar_2-2','','','2023-07-16 07:52:52','2023-07-16 07:52:52','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png',0,'attachment','image/png',0),(4708,1,'2023-07-16 07:52:52','2023-07-16 07:52:52','','avatar_3','','inherit','open','closed','','avatar_3','','','2023-07-16 07:52:52','2023-07-16 07:52:52','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png',0,'attachment','image/png',0),(4709,1,'2023-07-16 07:52:54','2023-07-16 07:52:54','','avatar_4','','inherit','open','closed','','avatar_4','','','2023-07-16 07:52:54','2023-07-16 07:52:54','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png',0,'attachment','image/png',0),(4710,1,'2023-07-16 07:52:55','2023-07-16 07:52:55','','avatar_5','','inherit','open','closed','','avatar_5','','','2023-07-16 07:52:55','2023-07-16 07:52:55','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_5.png',0,'attachment','image/png',0),(4711,1,'2023-07-16 07:52:56','2023-07-16 07:52:56','','avatar_6','','inherit','open','closed','','avatar_6','','','2023-07-16 07:52:56','2023-07-16 07:52:56','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_6.png',0,'attachment','image/png',0),(4712,1,'2023-07-16 07:52:57','2023-07-16 07:52:57','','brand_1','','inherit','open','closed','','brand_1','','','2023-07-16 07:52:57','2023-07-16 07:52:57','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_1.png',0,'attachment','image/png',0),(4713,1,'2023-07-16 07:52:58','2023-07-16 07:52:58','','brand_1','','inherit','open','closed','','brand_1-2','','','2023-07-16 07:52:58','2023-07-16 07:52:58','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_1.svg',0,'attachment','image/svg+xml',0),(4714,1,'2023-07-16 07:52:59','2023-07-16 07:52:59','','brand_2','','inherit','open','closed','','brand_2','','','2023-07-16 07:52:59','2023-07-16 07:52:59','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_2.png',0,'attachment','image/png',0),(4715,1,'2023-07-16 07:53:00','2023-07-16 07:53:00','','brand_2','','inherit','open','closed','','brand_2-2','','','2023-07-16 07:53:00','2023-07-16 07:53:00','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_2.svg',0,'attachment','image/svg+xml',0),(4716,1,'2023-07-16 07:53:00','2023-07-16 07:53:00','','brand_3','','inherit','open','closed','','brand_3','','','2023-07-16 07:53:00','2023-07-16 07:53:00','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_3.png',0,'attachment','image/png',0),(4717,1,'2023-07-16 07:53:00','2023-07-16 07:53:00','','brand_3','','inherit','open','closed','','brand_3-2','','','2023-07-16 07:53:00','2023-07-16 07:53:00','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_3.svg',0,'attachment','image/svg+xml',0),(4718,1,'2023-07-16 07:53:01','2023-07-16 07:53:01','','brand_4','','inherit','open','closed','','brand_4','','','2023-07-16 07:53:01','2023-07-16 07:53:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_4.png',0,'attachment','image/png',0),(4719,1,'2023-07-16 07:53:01','2023-07-16 07:53:01','','brand_4','','inherit','open','closed','','brand_4-2','','','2023-07-16 07:53:01','2023-07-16 07:53:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_4.svg',0,'attachment','image/svg+xml',0),(4720,1,'2023-07-16 07:53:01','2023-07-16 07:53:01','','brand_5','','inherit','open','closed','','brand_5','','','2023-07-16 07:53:01','2023-07-16 07:53:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_5.png',0,'attachment','image/png',0),(4721,1,'2023-07-16 07:53:02','2023-07-16 07:53:02','','brand_5','','inherit','open','closed','','brand_5-2','','','2023-07-16 07:53:02','2023-07-16 07:53:02','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_5.svg',0,'attachment','image/svg+xml',0),(4722,1,'2023-07-16 07:53:02','2023-07-16 07:53:02','','brand_6','','inherit','open','closed','','brand_6','','','2023-07-16 07:53:02','2023-07-16 07:53:02','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_6.svg',0,'attachment','image/svg+xml',0),(4723,1,'2023-07-16 07:53:03','2023-07-16 07:53:03','','contact_bg','','inherit','open','closed','','contact_bg','','','2023-07-16 07:53:03','2023-07-16 07:53:03','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_bg.jpeg',0,'attachment','image/jpeg',0),(4724,1,'2023-07-16 07:53:04','2023-07-16 07:53:04','','contact_bg','','inherit','open','closed','','contact_bg-2','','','2023-07-16 07:53:04','2023-07-16 07:53:04','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_bg.png',0,'attachment','image/png',0),(4725,1,'2023-07-16 07:53:06','2023-07-16 07:53:06','','contact_bg_2','','inherit','open','closed','','contact_bg_2','','','2023-07-16 07:53:06','2023-07-16 07:53:06','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_bg_2.jpeg',0,'attachment','image/jpeg',0),(4726,1,'2023-07-16 07:53:07','2023-07-16 07:53:07','','contact_bg_pattern','','inherit','open','closed','','contact_bg_pattern','','','2023-07-16 07:53:07','2023-07-16 07:53:07','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_bg_pattern.svg',0,'attachment','image/svg+xml',0),(4727,1,'2023-07-16 07:53:08','2023-07-16 07:53:08','','contact_form_shape','','inherit','open','closed','','contact_form_shape','','','2023-07-16 07:53:08','2023-07-16 07:53:08','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_form_shape.svg',0,'attachment','image/svg+xml',0),(4728,1,'2023-07-16 07:53:09','2023-07-16 07:53:09','','contact_img_1','','inherit','open','closed','','contact_img_1','','','2023-07-16 07:53:09','2023-07-16 07:53:09','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png',0,'attachment','image/png',0),(4729,1,'2023-07-16 07:53:12','2023-07-16 07:53:12','','cta_bg','','inherit','open','closed','','cta_bg','','','2023-07-16 07:53:12','2023-07-16 07:53:12','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/cta_bg.jpeg',0,'attachment','image/jpeg',0),(4730,1,'2023-07-16 07:53:16','2023-07-16 07:53:16','','drag','','inherit','open','closed','','drag','','','2023-07-16 07:53:16','2023-07-16 07:53:16','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/drag.png',0,'attachment','image/png',0),(4731,1,'2023-07-16 07:53:18','2023-07-16 07:53:18','','experience_bg','','inherit','open','closed','','experience_bg','','','2023-07-16 07:53:18','2023-07-16 07:53:18','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_bg.jpeg',0,'attachment','image/jpeg',0),(4732,1,'2023-07-16 07:53:19','2023-07-16 07:53:19','','experience_bg_2','','inherit','open','closed','','experience_bg_2','','','2023-07-16 07:53:19','2023-07-16 07:53:19','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_bg_2.jpeg',0,'attachment','image/jpeg',0),(4733,1,'2023-07-16 07:53:20','2023-07-16 07:53:20','','experience_icon','','inherit','open','closed','','experience_icon','','','2023-07-16 07:53:20','2023-07-16 07:53:20','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg',0,'attachment','image/svg+xml',0),(4734,1,'2023-07-16 07:53:21','2023-07-16 07:53:21','','experience_img','','inherit','open','closed','','experience_img','','','2023-07-16 07:53:21','2023-07-16 07:53:21','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg',0,'attachment','image/jpeg',0),(4735,1,'2023-07-16 07:53:23','2023-07-16 07:53:23','','experience_img','','inherit','open','closed','','experience_img-2','','','2023-07-16 07:53:23','2023-07-16 07:53:23','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.png',0,'attachment','image/png',0),(4736,1,'2023-07-16 07:53:26','2023-07-16 07:53:26','','experience_shape_1','','inherit','open','closed','','experience_shape_1','','','2023-07-16 07:53:26','2023-07-16 07:53:26','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png',0,'attachment','image/png',0),(4737,1,'2023-07-16 07:53:27','2023-07-16 07:53:27','','faq_bg','','inherit','open','closed','','faq_bg','','','2023-07-16 07:53:27','2023-07-16 07:53:27','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/faq_bg.jpeg',0,'attachment','image/jpeg',0),(4738,1,'2023-07-16 07:53:30','2023-07-16 07:53:30','','favicon','','inherit','open','closed','','favicon','','','2023-07-16 07:53:30','2023-07-16 07:53:30','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/favicon.png',0,'attachment','image/png',0),(4739,1,'2023-07-16 07:53:31','2023-07-16 07:53:31','','footer_bg','','inherit','open','closed','','footer_bg','','','2023-07-16 07:53:31','2023-07-16 07:53:31','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/footer_bg.jpeg',0,'attachment','image/jpeg',0),(4740,1,'2023-07-16 07:53:34','2023-07-16 07:53:34','','gallery_bg','','inherit','open','closed','','gallery_bg','','','2023-07-16 07:53:34','2023-07-16 07:53:34','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/gallery_bg.jpeg',0,'attachment','image/jpeg',0),(4741,1,'2023-07-16 07:53:36','2023-07-16 07:53:36','','hero_highlight_shape','','inherit','open','closed','','hero_highlight_shape','','','2023-07-16 07:53:36','2023-07-16 07:53:36','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_highlight_shape.svg',0,'attachment','image/svg+xml',0),(4742,1,'2023-07-16 07:53:36','2023-07-16 07:53:36','','hero_slider_1','','inherit','open','closed','','hero_slider_1','','','2023-07-16 07:53:36','2023-07-16 07:53:36','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_slider_1.jpeg',0,'attachment','image/jpeg',0),(4743,1,'2023-07-16 07:53:38','2023-07-16 07:53:38','','hero_slider_2','','inherit','open','closed','','hero_slider_2','','','2023-07-16 07:53:38','2023-07-16 07:53:38','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_slider_2.jpeg',0,'attachment','image/jpeg',0),(4744,1,'2023-07-16 07:53:40','2023-07-16 07:53:40','','hero_slider_3','','inherit','open','closed','','hero_slider_3','','','2023-07-16 07:53:40','2023-07-16 07:53:40','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_slider_3.jpeg',0,'attachment','image/jpeg',0),(4745,1,'2023-07-16 07:53:43','2023-07-16 07:53:43','','hero_slider_4','','inherit','open','closed','','hero_slider_4','','','2023-07-16 07:53:43','2023-07-16 07:53:43','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_slider_4.jpeg',0,'attachment','image/jpeg',0),(4746,1,'2023-07-16 07:53:45','2023-07-16 07:53:45','','loading','','inherit','open','closed','','loading','','','2023-07-16 07:53:45','2023-07-16 07:53:45','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/loading.gif',0,'attachment','image/gif',0),(4747,1,'2023-07-16 07:53:46','2023-07-16 07:53:46','','logo','','inherit','open','closed','','logo','','','2023-07-16 07:53:46','2023-07-16 07:53:46','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/logo.svg',0,'attachment','image/svg+xml',0),(4748,1,'2023-07-16 07:53:47','2023-07-16 07:53:47','','moving_text_shape','','inherit','open','closed','','moving_text_shape','','','2023-07-16 07:53:47','2023-07-16 07:53:47','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/moving_text_shape.png',0,'attachment','image/png',0),(4749,1,'2023-07-16 07:53:49','2023-07-16 07:53:49','','page_header_1','','inherit','open','closed','','page_header_1','','','2023-07-16 07:53:49','2023-07-16 07:53:49','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/page_header_1.jpeg',0,'attachment','image/jpeg',0),(4750,1,'2023-07-16 07:53:52','2023-07-16 07:53:52','','portfolio_1','','inherit','open','closed','','portfolio_1','','','2023-07-16 07:53:52','2023-07-16 07:53:52','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/portfolio_1.jpeg',0,'attachment','image/jpeg',0),(4751,1,'2023-07-16 07:53:53','2023-07-16 07:53:53','','portfolio_2','','inherit','open','closed','','portfolio_2','','','2023-07-16 07:53:53','2023-07-16 07:53:53','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/portfolio_2.jpeg',0,'attachment','image/jpeg',0),(4752,1,'2023-07-16 07:53:56','2023-07-16 07:53:56','','portfolio_3','','inherit','open','closed','','portfolio_3','','','2023-07-16 07:53:56','2023-07-16 07:53:56','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/portfolio_3.jpeg',0,'attachment','image/jpeg',0),(4753,1,'2023-07-16 07:53:57','2023-07-16 07:53:57','','portfolio_4','','inherit','open','closed','','portfolio_4','','','2023-07-16 07:53:57','2023-07-16 07:53:57','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/portfolio_4.jpeg',0,'attachment','image/jpeg',0),(4754,1,'2023-07-16 07:54:00','2023-07-16 07:54:00','','post_1','','inherit','open','closed','','post_1','','','2023-07-16 07:54:00','2023-07-16 07:54:00','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_1.jpeg',0,'attachment','image/jpeg',0),(4755,1,'2023-07-16 07:54:02','2023-07-16 07:54:02','','post_2','','inherit','open','closed','','post_2','','','2023-07-16 07:54:02','2023-07-16 07:54:02','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_2.jpeg',0,'attachment','image/jpeg',0),(4756,1,'2023-07-16 07:54:03','2023-07-16 07:54:03','','post_3','','inherit','open','closed','','post_3','','','2023-07-16 07:54:03','2023-07-16 07:54:03','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_3.jpeg',0,'attachment','image/jpeg',0),(4757,1,'2023-07-16 07:54:05','2023-07-16 07:54:05','','post_4','','inherit','open','closed','','post_4','','','2023-07-16 07:54:05','2023-07-16 07:54:05','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_4.jpeg',0,'attachment','image/jpeg',0),(4758,1,'2023-07-16 07:54:07','2023-07-16 07:54:07','','post_5','','inherit','open','closed','','post_5','','','2023-07-16 07:54:07','2023-07-16 07:54:07','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_5.jpeg',0,'attachment','image/jpeg',0),(4759,1,'2023-07-16 07:54:08','2023-07-16 07:54:08','','post_6','','inherit','open','closed','','post_6','','','2023-07-16 07:54:08','2023-07-16 07:54:08','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_6.jpeg',0,'attachment','image/jpeg',0),(4760,1,'2023-07-16 07:54:10','2023-07-16 07:54:10','','post_7','','inherit','open','closed','','post_7','','','2023-07-16 07:54:10','2023-07-16 07:54:10','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_7.jpeg',0,'attachment','image/jpeg',0),(4761,1,'2023-07-16 07:54:11','2023-07-16 07:54:11','https://bizmax.laralink.com/wp-content/uploads/2023/07/cropped-favicon.png','cropped-favicon.png','','inherit','open','closed','','cropped-favicon-png','','','2023-07-16 07:54:11','2023-07-16 07:54:11','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/cropped-favicon.png',0,'attachment','image/png',0),(4762,1,'2023-07-16 07:54:11','2023-07-16 07:54:11','','post_8','','inherit','open','closed','','post_8','','','2023-07-16 07:54:11','2023-07-16 07:54:11','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_8.jpeg',0,'attachment','image/jpeg',0),(4763,1,'2023-07-16 07:54:13','2023-07-16 07:54:13','','post_9','','inherit','open','closed','','post_9','','','2023-07-16 07:54:13','2023-07-16 07:54:13','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_9.jpeg',0,'attachment','image/jpeg',0),(4765,1,'2023-07-16 07:54:15','2023-07-16 07:54:15','','post_10','','inherit','open','closed','','post_10','','','2023-07-16 07:54:15','2023-07-16 07:54:15','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_10.jpeg',0,'attachment','image/jpeg',0),(4766,1,'2023-07-16 07:54:20','2023-07-16 07:54:20','','post_11','','inherit','open','closed','','post_11','','','2023-07-16 07:54:20','2023-07-16 07:54:20','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_11.jpeg',0,'attachment','image/jpeg',0),(4767,1,'2023-07-16 07:54:22','2023-07-16 07:54:22','','post-details-1','','inherit','open','closed','','post-details-1','','','2023-07-16 07:54:22','2023-07-16 07:54:22','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post-details-1.jpeg',0,'attachment','image/jpeg',0),(4768,1,'2023-07-16 07:54:25','2023-07-16 07:54:25','','project_1','','inherit','open','closed','','project_1','','','2023-07-16 07:54:25','2023-07-16 07:54:25','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_1.jpeg',0,'attachment','image/jpeg',0),(4769,1,'2023-07-16 07:54:26','2023-07-16 07:54:26','','project_2','','inherit','open','closed','','project_2','','','2023-07-16 07:54:26','2023-07-16 07:54:26','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_2.jpeg',0,'attachment','image/jpeg',0),(4770,1,'2023-07-16 07:54:28','2023-07-16 07:54:28','','project_3','','inherit','open','closed','','project_3','','','2023-07-16 07:54:28','2023-07-16 07:54:28','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_3.jpeg',0,'attachment','image/jpeg',0),(4771,1,'2023-07-16 07:54:30','2023-07-16 07:54:30','','project_4','','inherit','open','closed','','project_4','','','2023-07-16 07:54:30','2023-07-16 07:54:30','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_4.jpeg',0,'attachment','image/jpeg',0),(4772,1,'2023-07-16 07:54:31','2023-07-16 07:54:31','','project_5','','inherit','open','closed','','project_5','','','2023-07-16 07:54:31','2023-07-16 07:54:31','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_5.jpeg',0,'attachment','image/jpeg',0),(4773,1,'2023-07-16 07:54:33','2023-07-16 07:54:33','','project_6','','inherit','open','closed','','project_6','','','2023-07-16 07:54:33','2023-07-16 07:54:33','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_6.jpeg',0,'attachment','image/jpeg',0),(4774,1,'2023-07-16 07:54:35','2023-07-16 07:54:35','','project_details_img','','inherit','open','closed','','project_details_img','','','2023-07-16 07:54:35','2023-07-16 07:54:35','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_details_img.jpeg',0,'attachment','image/jpeg',0),(4775,1,'2023-07-16 07:54:38','2023-07-16 07:54:38','','recent-post-1','','inherit','open','closed','','recent-post-1','','','2023-07-16 07:54:38','2023-07-16 07:54:38','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/recent-post-1.jpeg',0,'attachment','image/jpeg',0),(4776,1,'2023-07-16 07:54:39','2023-07-16 07:54:39','','recent-post-2','','inherit','open','closed','','recent-post-2','','','2023-07-16 07:54:39','2023-07-16 07:54:39','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/recent-post-2.jpeg',0,'attachment','image/jpeg',0),(4777,1,'2023-07-16 07:54:41','2023-07-16 07:54:41','','recent-post-3','','inherit','open','closed','','recent-post-3','','','2023-07-16 07:54:41','2023-07-16 07:54:41','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/recent-post-3.jpeg',0,'attachment','image/jpeg',0),(4778,1,'2023-07-16 07:54:42','2023-07-16 07:54:42','','service_1','','inherit','open','closed','','service_1','','','2023-07-16 07:54:42','2023-07-16 07:54:42','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service_1.jpeg',0,'attachment','image/jpeg',0),(4779,1,'2023-07-16 07:54:43','2023-07-16 07:54:43','','service_2','','inherit','open','closed','','service_2','','','2023-07-16 07:54:43','2023-07-16 07:54:43','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service_2.jpeg',0,'attachment','image/jpeg',0),(4780,1,'2023-07-16 07:54:45','2023-07-16 07:54:45','','service_3','','inherit','open','closed','','service_3','','','2023-07-16 07:54:45','2023-07-16 07:54:45','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service_3.jpeg',0,'attachment','image/jpeg',0),(4781,1,'2023-07-16 07:54:46','2023-07-16 07:54:46','','service_4','','inherit','open','closed','','service_4','','','2023-07-16 07:54:46','2023-07-16 07:54:46','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service_4.jpeg',0,'attachment','image/jpeg',0),(4782,1,'2023-07-16 07:54:48','2023-07-16 07:54:48','','service-details-img-1','','inherit','open','closed','','service-details-img-1','','','2023-07-16 07:54:48','2023-07-16 07:54:48','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service-details-img-1.jpeg',0,'attachment','image/jpeg',0),(4783,1,'2023-07-16 07:54:50','2023-07-16 07:54:50','','service-details-img-2','','inherit','open','closed','','service-details-img-2','','','2023-07-16 07:54:50','2023-07-16 07:54:50','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service-details-img-2.jpeg',0,'attachment','image/jpeg',0),(4784,1,'2023-07-16 07:54:52','2023-07-16 07:54:52','','service-list-card','','inherit','open','closed','','service-list-card','','','2023-07-16 07:54:52','2023-07-16 07:54:52','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service-list-card.jpeg',0,'attachment','image/jpeg',0),(4785,1,'2023-07-16 07:54:53','2023-07-16 07:54:53','','services_bg','','inherit','open','closed','','services_bg','','','2023-07-16 07:54:53','2023-07-16 07:54:53','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/services_bg.jpeg',0,'attachment','image/jpeg',0),(4786,1,'2023-07-16 07:54:57','2023-07-16 07:54:57','','sidebar-project-1','','inherit','open','closed','','sidebar-project-1','','','2023-07-16 07:54:57','2023-07-16 07:54:57','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/sidebar-project-1.jpeg',0,'attachment','image/jpeg',0),(4787,1,'2023-07-16 07:54:59','2023-07-16 07:54:59','','staps_bg','','inherit','open','closed','','staps_bg','','','2023-07-16 07:54:59','2023-07-16 07:54:59','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/staps_bg.jpeg',0,'attachment','image/jpeg',0),(4788,1,'2023-07-16 07:55:02','2023-07-16 07:55:02','','step_1','','inherit','open','closed','','step_1','','','2023-07-16 07:55:02','2023-07-16 07:55:02','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg',0,'attachment','image/jpeg',0),(4789,1,'2023-07-16 07:55:04','2023-07-16 07:55:04','','step_2','','inherit','open','closed','','step_2','','','2023-07-16 07:55:04','2023-07-16 07:55:04','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg',0,'attachment','image/jpeg',0),(4790,1,'2023-07-16 07:55:05','2023-07-16 07:55:05','','step_3','','inherit','open','closed','','step_3','','','2023-07-16 07:55:05','2023-07-16 07:55:05','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg',0,'attachment','image/jpeg',0),(4791,1,'2023-07-16 07:55:07','2023-07-16 07:55:07','','team_member_1','','inherit','open','closed','','team_member_1','','','2023-07-16 07:55:07','2023-07-16 07:55:07','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg',0,'attachment','image/jpeg',0),(4792,1,'2023-07-16 07:55:07','2023-07-16 07:55:07','','team_member_2','','inherit','open','closed','','team_member_2','','','2023-07-16 07:55:07','2023-07-16 07:55:07','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg',0,'attachment','image/jpeg',0),(4793,1,'2023-07-16 07:55:09','2023-07-16 07:55:09','','team_member_3','','inherit','open','closed','','team_member_3','','','2023-07-16 07:55:09','2023-07-16 07:55:09','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg',0,'attachment','image/jpeg',0),(4794,1,'2023-07-16 07:55:11','2023-07-16 07:55:11','','team_member_4','','inherit','open','closed','','team_member_4','','','2023-07-16 07:55:11','2023-07-16 07:55:11','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_4.jpeg',0,'attachment','image/jpeg',0),(4795,1,'2023-07-16 07:55:13','2023-07-16 07:55:13','','test_1','','inherit','open','closed','','test_1','','','2023-07-16 07:55:13','2023-07-16 07:55:13','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/test_1.jpeg',0,'attachment','image/jpeg',0),(4796,1,'2023-07-16 07:55:14','2023-07-16 07:55:14','','test_2','','inherit','open','closed','','test_2','','','2023-07-16 07:55:14','2023-07-16 07:55:14','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/test_2.jpeg',0,'attachment','image/jpeg',0),(4797,1,'2023-07-16 07:55:16','2023-07-16 07:55:16','','testimonial_bg','','inherit','open','closed','','testimonial_bg','','','2023-07-16 07:55:16','2023-07-16 07:55:16','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg',0,'attachment','image/jpeg',0),(4798,1,'2023-07-16 07:55:19','2023-07-16 07:55:19','','testimonial_bg_1','','inherit','open','closed','','testimonial_bg_1','','','2023-07-16 07:55:19','2023-07-16 07:55:19','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg_1.jpeg',0,'attachment','image/jpeg',0),(4799,1,'2023-07-16 07:55:21','2023-07-16 07:55:21','','testimonial_thumb_1','','inherit','open','closed','','testimonial_thumb_1','','','2023-07-16 07:55:21','2023-07-16 07:55:21','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_thumb_1.png',0,'attachment','image/png',0),(4800,1,'2023-07-16 07:55:23','2023-07-16 07:55:23','','testimonial_thumb_2','','inherit','open','closed','','testimonial_thumb_2','','','2023-07-16 07:55:23','2023-07-16 07:55:23','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_thumb_2.png',0,'attachment','image/png',0),(4801,1,'2023-07-16 07:55:23','2023-07-16 07:55:23','','testimonial_thumb_3','','inherit','open','closed','','testimonial_thumb_3','','','2023-07-16 07:55:23','2023-07-16 07:55:23','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_thumb_3.png',0,'attachment','image/png',0),(4802,1,'2023-07-16 07:55:25','2023-07-16 07:55:25','','video_block','','inherit','open','closed','','video_block','','','2023-07-16 07:55:25','2023-07-16 07:55:25','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/video_block.jpeg',0,'attachment','image/jpeg',0),(4803,1,'2023-07-16 07:55:28','2023-07-16 07:55:28','','video_block_shape','','inherit','open','closed','','video_block_shape','','','2023-07-16 07:55:28','2023-07-16 07:55:28','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/video_block_shape.jpeg',0,'attachment','image/jpeg',0),(4804,1,'2023-07-16 07:55:31','2023-07-16 07:55:31','','video_block_text_shape','','inherit','open','closed','','video_block_text_shape','','','2023-07-16 07:55:31','2023-07-16 07:55:31','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/video_block_text_shape.svg',0,'attachment','image/svg+xml',0),(4805,1,'2023-07-16 07:55:32','2023-07-16 07:55:32','','why_choose_us_left_img','','inherit','open','closed','','why_choose_us_left_img','','','2023-07-16 07:55:32','2023-07-16 07:55:32','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/why_choose_us_left_img.jpeg',0,'attachment','image/jpeg',0),(4806,1,'2023-07-16 07:55:34','2023-07-16 07:55:34','','why_choose_us_right_img','','inherit','open','closed','','why_choose_us_right_img','','','2023-07-16 07:55:34','2023-07-16 07:55:34','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/why_choose_us_right_img.jpeg',0,'attachment','image/jpeg',0),(4807,1,'2023-07-16 07:55:36','2023-07-16 07:55:36','','why_chose_1','','inherit','open','closed','','why_chose_1','','','2023-07-16 07:55:36','2023-07-16 07:55:36','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/why_chose_1.jpeg',0,'attachment','image/jpeg',0),(4808,1,'2023-07-16 07:55:38','2023-07-16 07:55:38','','about_img_1','','inherit','open','closed','','about_img_1-2','','','2023-07-16 07:55:38','2023-07-16 07:55:38','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/about_img_1-1.png',0,'attachment','image/png',0),(4809,1,'2023-07-16 07:55:41','2023-07-16 07:55:41','','arrow_shape','','inherit','open','closed','','arrow_shape-2','','','2023-07-16 07:55:41','2023-07-16 07:55:41','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape-1.png',0,'attachment','image/png',0),(4810,1,'2023-07-16 07:55:43','2023-07-16 07:55:43','','avatar_1','','inherit','open','closed','','avatar_1-2','','','2023-07-16 07:55:43','2023-07-16 07:55:43','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1-1.png',0,'attachment','image/png',0),(4811,1,'2023-07-16 07:55:44','2023-07-16 07:55:44','','avatar_2','','inherit','open','closed','','avatar_2-3','','','2023-07-16 07:55:44','2023-07-16 07:55:44','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2-1.jpeg',0,'attachment','image/jpeg',0),(4812,1,'2023-07-16 07:55:46','2023-07-16 07:55:46','','avatar_2','','inherit','open','closed','','avatar_2-4','','','2023-07-16 07:55:46','2023-07-16 07:55:46','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2-1.png',0,'attachment','image/png',0),(4813,1,'2023-07-16 07:55:47','2023-07-16 07:55:47','','avatar_3','','inherit','open','closed','','avatar_3-2','','','2023-07-16 07:55:47','2023-07-16 07:55:47','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3-1.png',0,'attachment','image/png',0),(4814,1,'2023-07-16 07:55:48','2023-07-16 07:55:48','','avatar_4','','inherit','open','closed','','avatar_4-2','','','2023-07-16 07:55:48','2023-07-16 07:55:48','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4-1.png',0,'attachment','image/png',0),(4815,1,'2023-07-16 07:55:50','2023-07-16 07:55:50','','avatar_5','','inherit','open','closed','','avatar_5-2','','','2023-07-16 07:55:50','2023-07-16 07:55:50','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_5-1.png',0,'attachment','image/png',0),(4816,1,'2023-07-16 07:55:51','2023-07-16 07:55:51','','avatar_6','','inherit','open','closed','','avatar_6-2','','','2023-07-16 07:55:51','2023-07-16 07:55:51','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_6-1.png',0,'attachment','image/png',0),(4817,1,'2023-07-16 07:55:52','2023-07-16 07:55:52','','brand_1','','inherit','open','closed','','brand_1-3','','','2023-07-16 07:55:52','2023-07-16 07:55:52','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_1-1.png',0,'attachment','image/png',0),(4818,1,'2023-07-16 07:55:54','2023-07-16 07:55:54','','brand_1','','inherit','open','closed','','brand_1-4','','','2023-07-16 07:55:54','2023-07-16 07:55:54','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_1-1.svg',0,'attachment','image/svg+xml',0),(4819,1,'2023-07-16 07:55:55','2023-07-16 07:55:55','','brand_2','','inherit','open','closed','','brand_2-3','','','2023-07-16 07:55:55','2023-07-16 07:55:55','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_2-1.png',0,'attachment','image/png',0),(4820,1,'2023-07-16 07:55:56','2023-07-16 07:55:56','','brand_2','','inherit','open','closed','','brand_2-4','','','2023-07-16 07:55:56','2023-07-16 07:55:56','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_2-1.svg',0,'attachment','image/svg+xml',0),(4821,1,'2023-07-16 07:55:57','2023-07-16 07:55:57','','brand_3','','inherit','open','closed','','brand_3-3','','','2023-07-16 07:55:57','2023-07-16 07:55:57','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_3-1.png',0,'attachment','image/png',0),(4822,1,'2023-07-16 07:55:59','2023-07-16 07:55:59','','brand_3','','inherit','open','closed','','brand_3-4','','','2023-07-16 07:55:59','2023-07-16 07:55:59','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_3-1.svg',0,'attachment','image/svg+xml',0),(4823,1,'2023-07-16 07:56:00','2023-07-16 07:56:00','','brand_4','','inherit','open','closed','','brand_4-3','','','2023-07-16 07:56:00','2023-07-16 07:56:00','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_4-1.png',0,'attachment','image/png',0),(4824,1,'2023-07-16 07:56:02','2023-07-16 07:56:02','','brand_4','','inherit','open','closed','','brand_4-4','','','2023-07-16 07:56:02','2023-07-16 07:56:02','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_4-1.svg',0,'attachment','image/svg+xml',0),(4825,1,'2023-07-16 07:56:03','2023-07-16 07:56:03','','brand_5','','inherit','open','closed','','brand_5-3','','','2023-07-16 07:56:03','2023-07-16 07:56:03','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_5-1.png',0,'attachment','image/png',0),(4826,1,'2023-07-16 07:56:05','2023-07-16 07:56:05','','brand_5','','inherit','open','closed','','brand_5-4','','','2023-07-16 07:56:05','2023-07-16 07:56:05','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_5-1.svg',0,'attachment','image/svg+xml',0),(4827,1,'2023-07-16 07:56:06','2023-07-16 07:56:06','','brand_6','','inherit','open','closed','','brand_6-2','','','2023-07-16 07:56:06','2023-07-16 07:56:06','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/brand_6-1.svg',0,'attachment','image/svg+xml',0),(4828,1,'2023-07-16 07:56:07','2023-07-16 07:56:07','','contact_bg','','inherit','open','closed','','contact_bg-3','','','2023-07-16 07:56:07','2023-07-16 07:56:07','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_bg-1.jpeg',0,'attachment','image/jpeg',0),(4829,1,'2023-07-16 07:56:10','2023-07-16 07:56:10','','contact_bg','','inherit','open','closed','','contact_bg-4','','','2023-07-16 07:56:10','2023-07-16 07:56:10','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_bg-1.png',0,'attachment','image/png',0),(4830,1,'2023-07-16 07:56:12','2023-07-16 07:56:12','','contact_bg_2','','inherit','open','closed','','contact_bg_2-2','','','2023-07-16 07:56:12','2023-07-16 07:56:12','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_bg_2-1.jpeg',0,'attachment','image/jpeg',0),(4831,1,'2023-07-16 07:56:15','2023-07-16 07:56:15','','contact_bg_pattern','','inherit','open','closed','','contact_bg_pattern-2','','','2023-07-16 07:56:15','2023-07-16 07:56:15','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_bg_pattern-1.svg',0,'attachment','image/svg+xml',0),(4832,1,'2023-07-16 07:56:16','2023-07-16 07:56:16','','contact_form_shape','','inherit','open','closed','','contact_form_shape-2','','','2023-07-16 07:56:16','2023-07-16 07:56:16','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_form_shape-1.svg',0,'attachment','image/svg+xml',0),(4833,1,'2023-07-16 07:56:18','2023-07-16 07:56:18','','contact_img_1','','inherit','open','closed','','contact_img_1-2','','','2023-07-16 07:56:18','2023-07-16 07:56:18','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1-1.png',0,'attachment','image/png',0),(4834,1,'2023-07-16 07:56:20','2023-07-16 07:56:20','','cta_bg','','inherit','open','closed','','cta_bg-2','','','2023-07-16 07:56:20','2023-07-16 07:56:20','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/cta_bg-1.jpeg',0,'attachment','image/jpeg',0),(4835,1,'2023-07-16 07:56:26','2023-07-16 07:56:26','','drag','','inherit','open','closed','','drag-2','','','2023-07-16 07:56:26','2023-07-16 07:56:26','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/drag-1.png',0,'attachment','image/png',0),(4836,1,'2023-07-16 07:56:27','2023-07-16 07:56:27','','experience_bg','','inherit','open','closed','','experience_bg-2','','','2023-07-16 07:56:27','2023-07-16 07:56:27','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_bg-1.jpeg',0,'attachment','image/jpeg',0),(4837,1,'2023-07-16 07:56:28','2023-07-16 07:56:28','','experience_bg_2','','inherit','open','closed','','experience_bg_2-2','','','2023-07-16 07:56:28','2023-07-16 07:56:28','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_bg_2-1.jpeg',0,'attachment','image/jpeg',0),(4838,1,'2023-07-16 07:56:30','2023-07-16 07:56:30','','experience_icon','','inherit','open','closed','','experience_icon-2','','','2023-07-16 07:56:30','2023-07-16 07:56:30','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon-1.svg',0,'attachment','image/svg+xml',0),(4839,1,'2023-07-16 07:56:31','2023-07-16 07:56:31','','experience_img','','inherit','open','closed','','experience_img-3','','','2023-07-16 07:56:31','2023-07-16 07:56:31','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img-1.jpeg',0,'attachment','image/jpeg',0),(4840,1,'2023-07-16 07:56:33','2023-07-16 07:56:33','','experience_img','','inherit','open','closed','','experience_img-4','','','2023-07-16 07:56:33','2023-07-16 07:56:33','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img-1.png',0,'attachment','image/png',0),(4841,1,'2023-07-16 07:56:35','2023-07-16 07:56:35','','experience_shape_1','','inherit','open','closed','','experience_shape_1-2','','','2023-07-16 07:56:35','2023-07-16 07:56:35','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1-1.png',0,'attachment','image/png',0),(4842,1,'2023-07-16 07:56:37','2023-07-16 07:56:37','','faq_bg','','inherit','open','closed','','faq_bg-2','','','2023-07-16 07:56:37','2023-07-16 07:56:37','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/faq_bg-1.jpeg',0,'attachment','image/jpeg',0),(4843,1,'2023-07-16 07:56:39','2023-07-16 07:56:39','','favicon','','inherit','open','closed','','favicon-2','','','2023-07-16 07:56:39','2023-07-16 07:56:39','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/favicon-1.png',0,'attachment','image/png',0),(4844,1,'2023-07-16 07:56:41','2023-07-16 07:56:41','','footer_bg','','inherit','open','closed','','footer_bg-2','','','2023-07-16 07:56:41','2023-07-16 07:56:41','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/footer_bg-1.jpeg',0,'attachment','image/jpeg',0),(4845,1,'2023-07-16 07:56:43','2023-07-16 07:56:43','','gallery_bg','','inherit','open','closed','','gallery_bg-2','','','2023-07-16 07:56:43','2023-07-16 07:56:43','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/gallery_bg-1.jpeg',0,'attachment','image/jpeg',0),(4846,1,'2023-07-16 07:56:47','2023-07-16 07:56:47','','hero_highlight_shape','','inherit','open','closed','','hero_highlight_shape-2','','','2023-07-16 07:56:47','2023-07-16 07:56:47','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_highlight_shape-1.svg',0,'attachment','image/svg+xml',0),(4847,1,'2023-07-16 07:56:48','2023-07-16 07:56:48','','hero_slider_1','','inherit','open','closed','','hero_slider_1-2','','','2023-07-16 07:56:48','2023-07-16 07:56:48','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_slider_1-1.jpeg',0,'attachment','image/jpeg',0),(4848,1,'2023-07-16 07:56:51','2023-07-16 07:56:51','','hero_slider_2','','inherit','open','closed','','hero_slider_2-2','','','2023-07-16 07:56:51','2023-07-16 07:56:51','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_slider_2-1.jpeg',0,'attachment','image/jpeg',0),(4849,1,'2023-07-16 07:56:54','2023-07-16 07:56:54','','hero_slider_3','','inherit','open','closed','','hero_slider_3-2','','','2023-07-16 07:56:54','2023-07-16 07:56:54','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_slider_3-1.jpeg',0,'attachment','image/jpeg',0),(4850,1,'2023-07-16 07:56:57','2023-07-16 07:56:57','','hero_slider_4','','inherit','open','closed','','hero_slider_4-2','','','2023-07-16 07:56:57','2023-07-16 07:56:57','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/hero_slider_4-1.jpeg',0,'attachment','image/jpeg',0),(4851,1,'2023-07-16 07:57:00','2023-07-16 07:57:00','','loading','','inherit','open','closed','','loading-2','','','2023-07-16 07:57:00','2023-07-16 07:57:00','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/loading-1.gif',0,'attachment','image/gif',0),(4852,1,'2023-07-16 07:57:01','2023-07-16 07:57:01','','logo','','inherit','open','closed','','logo-2','','','2023-07-16 07:57:01','2023-07-16 07:57:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/logo-1.svg',0,'attachment','image/svg+xml',0),(4853,1,'2023-07-16 07:57:03','2023-07-16 07:57:03','','moving_text_shape','','inherit','open','closed','','moving_text_shape-2','','','2023-07-16 07:57:03','2023-07-16 07:57:03','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/moving_text_shape-1.png',0,'attachment','image/png',0),(4854,1,'2023-07-16 07:57:05','2023-07-16 07:57:05','','page_header_1','','inherit','open','closed','','page_header_1-2','','','2023-07-16 07:57:05','2023-07-16 07:57:05','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/page_header_1-1.jpeg',0,'attachment','image/jpeg',0),(4855,1,'2023-07-16 07:57:07','2023-07-16 07:57:07','','portfolio_1','','inherit','open','closed','','portfolio_1-2','','','2023-07-16 07:57:07','2023-07-16 07:57:07','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/portfolio_1-1.jpeg',0,'attachment','image/jpeg',0),(4856,1,'2023-07-16 07:57:09','2023-07-16 07:57:09','','portfolio_2','','inherit','open','closed','','portfolio_2-2','','','2023-07-16 07:57:09','2023-07-16 07:57:09','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/portfolio_2-1.jpeg',0,'attachment','image/jpeg',0),(4857,1,'2023-07-16 07:57:11','2023-07-16 07:57:11','','portfolio_3','','inherit','open','closed','','portfolio_3-2','','','2023-07-16 07:57:11','2023-07-16 07:57:11','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/portfolio_3-1.jpeg',0,'attachment','image/jpeg',0),(4858,1,'2023-07-16 07:57:13','2023-07-16 07:57:13','','portfolio_4','','inherit','open','closed','','portfolio_4-2','','','2023-07-16 07:57:13','2023-07-16 07:57:13','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/portfolio_4-1.jpeg',0,'attachment','image/jpeg',0),(4859,1,'2023-07-16 07:57:14','2023-07-16 07:57:14','','post_1','','inherit','open','closed','','post_1-2','','','2023-07-16 07:57:14','2023-07-16 07:57:14','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_1-1.jpeg',0,'attachment','image/jpeg',0),(4860,1,'2023-07-16 07:57:16','2023-07-16 07:57:16','','post_2','','inherit','open','closed','','post_2-2','','','2023-07-16 07:57:16','2023-07-16 07:57:16','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_2-1.jpeg',0,'attachment','image/jpeg',0),(4861,1,'2023-07-16 07:57:18','2023-07-16 07:57:18','','post_3','','inherit','open','closed','','post_3-2','','','2023-07-16 07:57:18','2023-07-16 07:57:18','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_3-1.jpeg',0,'attachment','image/jpeg',0),(4862,1,'2023-07-16 07:57:19','2023-07-16 07:57:19','','post_4','','inherit','open','closed','','post_4-2','','','2023-07-16 07:57:19','2023-07-16 07:57:19','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_4-1.jpeg',0,'attachment','image/jpeg',0),(4863,1,'2023-07-16 07:57:20','2023-07-16 07:57:20','','post_5','','inherit','open','closed','','post_5-2','','','2023-07-16 07:57:20','2023-07-16 07:57:20','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_5-1.jpeg',0,'attachment','image/jpeg',0),(4864,1,'2023-07-16 07:57:21','2023-07-16 07:57:21','','post_6','','inherit','open','closed','','post_6-2','','','2023-07-16 07:57:21','2023-07-16 07:57:21','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_6-1.jpeg',0,'attachment','image/jpeg',0),(4865,1,'2023-07-16 07:57:23','2023-07-16 07:57:23','','post_7','','inherit','open','closed','','post_7-2','','','2023-07-16 07:57:23','2023-07-16 07:57:23','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_7-1.jpeg',0,'attachment','image/jpeg',0),(4866,1,'2023-07-16 07:57:25','2023-07-16 07:57:25','','post_8','','inherit','open','closed','','post_8-2','','','2023-07-16 07:57:25','2023-07-16 07:57:25','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_8-1.jpeg',0,'attachment','image/jpeg',0),(4867,1,'2023-07-16 07:57:26','2023-07-16 07:57:26','','post_9','','inherit','open','closed','','post_9-2','','','2023-07-16 07:57:26','2023-07-16 07:57:26','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_9-1.jpeg',0,'attachment','image/jpeg',0),(4868,1,'2023-07-16 07:57:28','2023-07-16 07:57:28','','post_10','','inherit','open','closed','','post_10-2','','','2023-07-16 07:57:28','2023-07-16 07:57:28','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_10-1.jpeg',0,'attachment','image/jpeg',0),(4869,1,'2023-07-16 07:57:30','2023-07-16 07:57:30','','post_11','','inherit','open','closed','','post_11-2','','','2023-07-16 07:57:30','2023-07-16 07:57:30','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post_11-1.jpeg',0,'attachment','image/jpeg',0),(4870,1,'2023-07-16 07:57:32','2023-07-16 07:57:32','','post-details-1','','inherit','open','closed','','post-details-1-2','','','2023-07-16 07:57:32','2023-07-16 07:57:32','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/post-details-1-1.jpeg',0,'attachment','image/jpeg',0),(4871,1,'2023-07-16 07:57:34','2023-07-16 07:57:34','','project_1','','inherit','open','closed','','project_1-2','','','2023-07-16 07:57:34','2023-07-16 07:57:34','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_1-1.jpeg',0,'attachment','image/jpeg',0),(4872,1,'2023-07-16 07:57:36','2023-07-16 07:57:36','','project_2','','inherit','open','closed','','project_2-2','','','2023-07-16 07:57:36','2023-07-16 07:57:36','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_2-1.jpeg',0,'attachment','image/jpeg',0),(4873,1,'2023-07-16 07:57:37','2023-07-16 07:57:37','','project_3','','inherit','open','closed','','project_3-2','','','2023-07-16 07:57:37','2023-07-16 07:57:37','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_3-1.jpeg',0,'attachment','image/jpeg',0),(4874,1,'2023-07-16 07:57:39','2023-07-16 07:57:39','','project_4','','inherit','open','closed','','project_4-2','','','2023-07-16 07:57:39','2023-07-16 07:57:39','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_4-1.jpeg',0,'attachment','image/jpeg',0),(4875,1,'2023-07-16 07:57:41','2023-07-16 07:57:41','','project_5','','inherit','open','closed','','project_5-2','','','2023-07-16 07:57:41','2023-07-16 07:57:41','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_5-1.jpeg',0,'attachment','image/jpeg',0),(4876,1,'2023-07-16 07:57:42','2023-07-16 07:57:42','','project_6','','inherit','open','closed','','project_6-2','','','2023-07-16 07:57:42','2023-07-16 07:57:42','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_6-1.jpeg',0,'attachment','image/jpeg',0),(4877,1,'2023-07-16 07:57:44','2023-07-16 07:57:44','','project_details_img','','inherit','open','closed','','project_details_img-2','','','2023-07-16 07:57:44','2023-07-16 07:57:44','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/project_details_img-1.jpeg',0,'attachment','image/jpeg',0),(4878,1,'2023-07-16 07:57:47','2023-07-16 07:57:47','','recent-post-1','','inherit','open','closed','','recent-post-1-2','','','2023-07-16 07:57:47','2023-07-16 07:57:47','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/recent-post-1-1.jpeg',0,'attachment','image/jpeg',0),(4879,1,'2023-07-16 07:57:48','2023-07-16 07:57:48','','recent-post-2','','inherit','open','closed','','recent-post-2-2','','','2023-07-16 07:57:48','2023-07-16 07:57:48','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/recent-post-2-1.jpeg',0,'attachment','image/jpeg',0),(4880,1,'2023-07-16 07:57:49','2023-07-16 07:57:49','','recent-post-3','','inherit','open','closed','','recent-post-3-2','','','2023-07-16 07:57:49','2023-07-16 07:57:49','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/recent-post-3-1.jpeg',0,'attachment','image/jpeg',0),(4881,1,'2023-07-16 07:57:51','2023-07-16 07:57:51','','service_1','','inherit','open','closed','','service_1-2','','','2023-07-16 07:57:51','2023-07-16 07:57:51','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service_1-1.jpeg',0,'attachment','image/jpeg',0),(4882,1,'2023-07-16 07:57:52','2023-07-16 07:57:52','','service_2','','inherit','open','closed','','service_2-2','','','2023-07-16 07:57:52','2023-07-16 07:57:52','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service_2-1.jpeg',0,'attachment','image/jpeg',0),(4883,1,'2023-07-16 07:57:54','2023-07-16 07:57:54','','service_3','','inherit','open','closed','','service_3-2','','','2023-07-16 07:57:54','2023-07-16 07:57:54','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service_3-1.jpeg',0,'attachment','image/jpeg',0),(4884,1,'2023-07-16 07:57:55','2023-07-16 07:57:55','','service_4','','inherit','open','closed','','service_4-2','','','2023-07-16 07:57:55','2023-07-16 07:57:55','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service_4-1.jpeg',0,'attachment','image/jpeg',0),(4885,1,'2023-07-16 07:57:56','2023-07-16 07:57:56','','service-details-img-1','','inherit','open','closed','','service-details-img-1-2','','','2023-07-16 07:57:56','2023-07-16 07:57:56','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service-details-img-1-1.jpeg',0,'attachment','image/jpeg',0),(4886,1,'2023-07-16 07:57:59','2023-07-16 07:57:59','','service-details-img-2','','inherit','open','closed','','service-details-img-2-2','','','2023-07-16 07:57:59','2023-07-16 07:57:59','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service-details-img-2-1.jpeg',0,'attachment','image/jpeg',0),(4887,1,'2023-07-16 07:58:00','2023-07-16 07:58:00','','service-list-card','','inherit','open','closed','','service-list-card-2','','','2023-07-16 07:58:00','2023-07-16 07:58:00','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/service-list-card-1.jpeg',0,'attachment','image/jpeg',0),(4888,1,'2023-07-16 07:58:02','2023-07-16 07:58:02','','services_bg','','inherit','open','closed','','services_bg-2','','','2023-07-16 07:58:02','2023-07-16 07:58:02','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/services_bg-1.jpeg',0,'attachment','image/jpeg',0),(4889,1,'2023-07-16 07:58:05','2023-07-16 07:58:05','','sidebar-project-1','','inherit','open','closed','','sidebar-project-1-2','','','2023-07-16 07:58:05','2023-07-16 07:58:05','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/sidebar-project-1-1.jpeg',0,'attachment','image/jpeg',0),(4890,1,'2023-07-16 07:58:06','2023-07-16 07:58:06','','staps_bg','','inherit','open','closed','','staps_bg-2','','','2023-07-16 07:58:06','2023-07-16 07:58:06','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/staps_bg-1.jpeg',0,'attachment','image/jpeg',0),(4891,1,'2023-07-16 07:58:10','2023-07-16 07:58:10','','step_1','','inherit','open','closed','','step_1-2','','','2023-07-16 07:58:10','2023-07-16 07:58:10','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1-1.jpeg',0,'attachment','image/jpeg',0),(4892,1,'2023-07-16 07:58:11','2023-07-16 07:58:11','','step_2','','inherit','open','closed','','step_2-2','','','2023-07-16 07:58:11','2023-07-16 07:58:11','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2-1.jpeg',0,'attachment','image/jpeg',0),(4893,1,'2023-07-16 07:58:12','2023-07-16 07:58:12','','step_3','','inherit','open','closed','','step_3-2','','','2023-07-16 07:58:12','2023-07-16 07:58:12','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3-1.jpeg',0,'attachment','image/jpeg',0),(4894,1,'2023-07-16 07:58:14','2023-07-16 07:58:14','','team_member_1','','inherit','open','closed','','team_member_1-2','','','2023-07-16 07:58:14','2023-07-16 07:58:14','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1-1.jpeg',0,'attachment','image/jpeg',0),(4895,1,'2023-07-16 07:58:15','2023-07-16 07:58:15','','team_member_2','','inherit','open','closed','','team_member_2-2','','','2023-07-16 07:58:15','2023-07-16 07:58:15','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2-1.jpeg',0,'attachment','image/jpeg',0),(4896,1,'2023-07-16 07:58:17','2023-07-16 07:58:17','','team_member_3','','inherit','open','closed','','team_member_3-2','','','2023-07-16 07:58:17','2023-07-16 07:58:17','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3-1.jpeg',0,'attachment','image/jpeg',0),(4897,1,'2023-07-16 07:58:19','2023-07-16 07:58:19','','team_member_4','','inherit','open','closed','','team_member_4-2','','','2023-07-16 07:58:19','2023-07-16 07:58:19','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_4-1.jpeg',0,'attachment','image/jpeg',0),(4898,1,'2023-07-16 07:58:19','2023-07-16 07:58:19','','test_1','','inherit','open','closed','','test_1-2','','','2023-07-16 07:58:19','2023-07-16 07:58:19','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/test_1-1.jpeg',0,'attachment','image/jpeg',0),(4899,1,'2023-07-16 07:58:21','2023-07-16 07:58:21','','test_2','','inherit','open','closed','','test_2-2','','','2023-07-16 07:58:21','2023-07-16 07:58:21','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/test_2-1.jpeg',0,'attachment','image/jpeg',0),(4900,1,'2023-07-16 07:58:23','2023-07-16 07:58:23','','testimonial_bg','','inherit','open','closed','','testimonial_bg-2','','','2023-07-16 07:58:23','2023-07-16 07:58:23','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg-1.jpeg',0,'attachment','image/jpeg',0),(4901,1,'2023-07-16 07:58:25','2023-07-16 07:58:25','','testimonial_bg_1','','inherit','open','closed','','testimonial_bg_1-2','','','2023-07-16 07:58:25','2023-07-16 07:58:25','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg_1-1.jpeg',0,'attachment','image/jpeg',0),(4902,1,'2023-07-16 07:58:28','2023-07-16 07:58:28','','testimonial_thumb_1','','inherit','open','closed','','testimonial_thumb_1-2','','','2023-07-16 07:58:28','2023-07-16 07:58:28','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_thumb_1-1.png',0,'attachment','image/png',0),(4903,1,'2023-07-16 07:58:29','2023-07-16 07:58:29','','testimonial_thumb_2','','inherit','open','closed','','testimonial_thumb_2-2','','','2023-07-16 07:58:29','2023-07-16 07:58:29','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_thumb_2-1.png',0,'attachment','image/png',0),(4904,1,'2023-07-16 07:58:31','2023-07-16 07:58:31','','testimonial_thumb_3','','inherit','open','closed','','testimonial_thumb_3-2','','','2023-07-16 07:58:31','2023-07-16 07:58:31','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_thumb_3-1.png',0,'attachment','image/png',0),(4905,1,'2023-07-16 07:58:32','2023-07-16 07:58:32','','video_block','','inherit','open','closed','','video_block-2','','','2023-07-16 07:58:32','2023-07-16 07:58:32','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/video_block-1.jpeg',0,'attachment','image/jpeg',0),(4906,1,'2023-07-16 07:58:35','2023-07-16 07:58:35','','video_block_shape','','inherit','open','closed','','video_block_shape-2','','','2023-07-16 07:58:35','2023-07-16 07:58:35','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/video_block_shape-1.jpeg',0,'attachment','image/jpeg',0),(4907,1,'2023-07-16 07:58:38','2023-07-16 07:58:38','','video_block_text_shape','','inherit','open','closed','','video_block_text_shape-2','','','2023-07-16 07:58:38','2023-07-16 07:58:38','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/video_block_text_shape-1.svg',0,'attachment','image/svg+xml',0),(4908,1,'2023-07-16 07:58:39','2023-07-16 07:58:39','','why_choose_us_left_img','','inherit','open','closed','','why_choose_us_left_img-2','','','2023-07-16 07:58:39','2023-07-16 07:58:39','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/why_choose_us_left_img-1.jpeg',0,'attachment','image/jpeg',0),(4909,1,'2023-07-16 07:58:41','2023-07-16 07:58:41','','why_choose_us_right_img','','inherit','open','closed','','why_choose_us_right_img-2','','','2023-07-16 07:58:41','2023-07-16 07:58:41','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/why_choose_us_right_img-1.jpeg',0,'attachment','image/jpeg',0),(4910,1,'2023-07-16 07:58:43','2023-07-16 07:58:43','','why_chose_1','','inherit','open','closed','','why_chose_1-2','','','2023-07-16 07:58:43','2023-07-16 07:58:43','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/why_chose_1-1.jpeg',0,'attachment','image/jpeg',0),(4976,1,'2023-07-19 13:49:38','2023-07-19 13:49:38','','Group 1508','','inherit','open','closed','','group-1508','','','2023-07-19 13:49:38','2023-07-19 13:49:38','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/Group-1508.svg',0,'attachment','image/svg+xml',0),(4987,1,'2023-07-19 19:46:21','2023-07-19 19:46:21','','1','','inherit','open','closed','','1','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png',0,'attachment','image/png',0),(4988,1,'2023-07-19 19:46:35','2023-07-19 19:46:35','','2','','inherit','open','closed','','2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png',0,'attachment','image/png',0),(4989,1,'2023-07-19 19:46:36','2023-07-19 19:46:36','','3','','inherit','open','closed','','3','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png',0,'attachment','image/png',0),(4990,1,'2023-07-19 19:46:37','2023-07-19 19:46:37','','4','','inherit','open','closed','','4','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png',0,'attachment','image/png',0),(5071,1,'2023-07-20 09:21:05','2023-07-20 09:21:05','','1','','inherit','open','closed','','1-2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png',0,'attachment','image/png',0),(5072,1,'2023-07-20 09:21:05','2023-07-20 09:21:05','','2','','inherit','open','closed','','2-2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png',0,'attachment','image/png',0),(5073,1,'2023-07-20 09:21:05','2023-07-20 09:21:05','','3','','inherit','open','closed','','3-2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png',0,'attachment','image/png',0),(5151,1,'2023-07-22 21:03:50','2023-07-22 21:03:50','','f-1','','inherit','open','closed','','f-1','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png',0,'attachment','image/png',0),(5152,1,'2023-07-22 21:03:51','2023-07-22 21:03:51','','f-2','','inherit','open','closed','','f-2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png',0,'attachment','image/png',0),(5153,1,'2023-07-22 21:03:51','2023-07-22 21:03:51','','f-3','','inherit','open','closed','','f-3','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png',0,'attachment','image/png',0),(5154,1,'2023-07-22 21:03:52','2023-07-22 21:03:52','','f-4','','inherit','open','closed','','f-4','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png',0,'attachment','image/png',0),(5200,1,'2023-07-23 18:50:27','2023-07-23 18:50:27','','cta_bg','','inherit','open','closed','','cta_bg-3','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/07/cta_bg-2.jpeg',0,'attachment','image/jpeg',0),(5437,1,'2023-07-24 10:17:20','2023-07-24 10:17:20','','t-feature1','','inherit','open','closed','','t-feature1','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/t-feature1.png',0,'attachment','image/png',0),(5438,1,'2023-07-24 10:17:21','2023-07-24 10:17:21','','t-feature2','','inherit','open','closed','','t-feature2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/t-feature2.png',0,'attachment','image/png',0),(5439,1,'2023-07-24 10:17:22','2023-07-24 10:17:22','','t-feature3','','inherit','open','closed','','t-feature3','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/t-feature3.png',0,'attachment','image/png',0),(5440,1,'2023-07-24 10:17:24','2023-07-24 10:17:24','','t-feature4','','inherit','open','closed','','t-feature4','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/t-feature4.png',0,'attachment','image/png',0),(5622,1,'2023-07-25 08:54:14','2023-07-25 08:52:54',' ','','','publish','closed','closed','','5622','','','2023-07-25 08:54:14','2023-07-25 08:52:54','',0,'https://bizmax.laralink.com/?p=5622',1,'nav_menu_item','',0),(5640,1,'2023-07-25 09:29:31','2023-07-25 09:29:31','','1','','inherit','open','closed','','1-3','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',1978,'https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png',0,'attachment','image/png',0),(5660,1,'2023-07-25 10:37:34','2023-07-25 10:37:34','','1','','inherit','open','closed','','1-4','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',1978,'https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png',0,'attachment','image/png',0),(5661,1,'2023-07-25 10:37:50','2023-07-25 10:37:50','','2','','inherit','open','closed','','2-3','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',1978,'https://bizmax.laralink.com/wp-content/uploads/2023/07/2-2.png',0,'attachment','image/png',0),(5788,1,'2023-07-27 06:45:21','2023-07-27 06:45:21','','p-icon1','','inherit','open','closed','','p-icon1','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/p-icon1.png',0,'attachment','image/png',0),(5789,1,'2023-07-27 06:45:42','2023-07-27 06:45:42','','p-icon2','','inherit','open','closed','','p-icon2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/p-icon2.png',0,'attachment','image/png',0),(5790,1,'2023-07-27 06:45:54','2023-07-27 06:45:54','','p-icon3','','inherit','open','closed','','p-icon3','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/p-icon3.png',0,'attachment','image/png',0),(5838,1,'2023-07-28 11:19:31','2023-07-28 11:19:31','','icon-feature2','','inherit','open','closed','','icon-feature2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/icon-feature2.png',0,'attachment','image/png',0),(5839,1,'2023-07-28 11:19:33','2023-07-28 11:19:33','','icon-feature1','','inherit','open','closed','','icon-feature1','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/icon-feature1.png',0,'attachment','image/png',0),(5860,1,'2023-07-28 12:51:23','2023-07-28 12:51:23','','faq','','inherit','open','closed','','faq-2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/07/faq.png',0,'attachment','image/png',0),(6028,1,'2023-08-02 20:02:17','2023-07-31 07:24:15','','404','','publish','closed','closed','','404-2','','','2023-08-02 20:02:17','2023-07-31 07:24:15','',0,'https://bizmax.laralink.com/?p=6028',19,'nav_menu_item','',0),(6076,1,'2023-08-01 04:16:48','2023-08-01 04:16:48','','section-shape','','inherit','open','closed','','section-shape','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',17,'https://bizmax.laralink.com/wp-content/uploads/2023/08/section-shape.png',0,'attachment','image/png',0),(6099,1,'2023-08-01 06:42:55','2023-08-01 06:42:55','<div class=\"bizmax-form\">\r\n<div class=\"row\">\r\n    <div class=\"col-12\">\r\n        <div class=\"cs_mb_15 \">\r\n            [text* your-name placeholder \"Your Name\"]\r\n        </div>\r\n    </div>\r\n    <div class=\"col-12\">\r\n        <div class=\"cs_mb_15 \">\r\n            [email* your-email placeholder \"Your Email\"]\r\n        </div>\r\n    </div>\r\n    <div class=\"col-12\">\r\n        <div class=\"cs_mb_15 \">\r\n            [textarea* your-message placeholder \"Message here ...\"]\r\n        </div>\r\n    </div>\r\n    <div class=\"col-12\">\r\n        <button class=\"cs_btn cs_style_1 cs_fs_14 cs_rounded_5 cs_pl_30 cs_pr_30 cs_pt_10 cs_pb_10 overflow-hidden\"><span>Submit Now</span></button>\r\n    </div>\r\n</div>\r\n</div>\n1\n[_site_title] Contact Me\n[_site_title] Contact Us <admin@esigo.co>\nchan.sh@esigo.co\nSender Information\r\nName: [your-name]\r\nEmail: [your-email]\r\n\r\nMessage:\r\n[your-message]\nReply-To: [your-email]\n\n\n\n\n\n\n\n\n\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.\nPlease enter a date in YYYY-MM-DD format.\nThis field has a too early date.\nThis field has a too late date.\nPlease enter a number.\nThis field has a too small number.\nThis field has a too large number.\nThe answer to the quiz is incorrect.\nPlease enter an email address.\nPlease enter a URL.\nPlease enter a telephone number.','Contact Form Home','','publish','closed','closed','','contact-form-quick_copy','','','2023-11-08 07:06:51','2023-11-08 07:06:51','',0,'https://bizmax.laralink.com/?post_type=wpcf7_contact_form&#038;p=6099',0,'wpcf7_contact_form','',0),(6334,1,'2023-08-01 21:16:31','2023-08-01 21:16:31','','section-shape2','','inherit','open','closed','','section-shape2','','','2023-08-23 04:09:01','2023-08-23 04:09:01','',0,'https://bizmax.laralink.com/wp-content/uploads/2023/08/section-shape2.png',0,'attachment','image/png',0),(6522,1,'2023-08-02 20:02:17','2023-08-02 19:52:37','','Team','','publish','closed','closed','','team','','','2023-08-02 20:02:17','2023-08-02 19:52:37','',0,'https://bizmax.laralink.com/?p=6522',14,'nav_menu_item','',0),(6523,1,'2023-08-02 20:02:17','2023-08-02 19:53:01',' ','','','publish','closed','closed','','6523','','','2023-08-02 20:02:17','2023-08-02 19:53:01','',0,'https://bizmax.laralink.com/?p=6523',12,'nav_menu_item','',0),(6535,1,'2023-08-02 20:00:22','2023-08-02 20:00:22','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>We look forward to hearing from you and collaborating for a secured, high technology, AI-driven solution to address your business needs.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p></p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">Have Any Question?</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"71\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','publish','closed','closed','','contact-us','','','2023-09-21 04:32:16','2023-09-21 04:32:16','',0,'https://bizmax.laralink.com/?page_id=6535',0,'page','',0),(6537,1,'2023-08-02 20:02:17','2023-08-02 20:00:58',' ','','','publish','closed','closed','','contact-v2','','','2023-08-02 20:02:17','2023-08-02 20:00:58','',0,'https://bizmax.laralink.com/?p=6537',27,'nav_menu_item','',0),(6538,1,'2023-08-02 20:02:17','2023-08-02 20:00:58','','Contact','','publish','closed','closed','','contact-v1','','','2023-08-02 20:02:17','2023-08-02 20:00:58','',0,'https://bizmax.laralink.com/?p=6538',25,'nav_menu_item','',0),(6600,1,'2023-08-06 12:29:32','2023-08-06 12:29:32',' ','','','publish','closed','closed','','6600','','','2023-08-06 12:29:32','2023-08-06 12:29:32','',0,'https://bizmax.laralink.com/?p=6600',1,'nav_menu_item','',0),(6625,1,'2023-08-23 04:11:16','2023-08-23 04:11:16','','One Click Demo Import - log_file_2023-08-23__04-11-16','','inherit','open','closed','','one-click-demo-import-log_file_2023-08-23__04-11-16','','','2023-08-23 04:11:16','2023-08-23 04:11:16','',0,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/log_file_2023-08-23__04-11-16.txt',0,'attachment','text/plain',0),(6626,1,'2023-06-08 05:40:27','2023-06-08 05:40:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-licence\">\n											Business Licence\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/terms-of-use\">\n											Terms of Use\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','publish','closed','closed','','footer-2','','','2023-11-17 16:25:08','2023-11-17 08:25:08','',0,'https://ordainit.com/wp-theme/sorex/?post_type=elementor-hf&#038;p=4144',0,'elementor-hf','',0),(6628,1,'2023-08-23 07:15:29','2023-08-23 07:15:29','','Flash Banner 1','','inherit','open','closed','','banner-1','','','2023-08-23 07:15:44','2023-08-23 07:15:44','',17,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png',0,'attachment','image/png',0),(6629,1,'2023-08-23 07:17:12','2023-08-23 07:17:12','','Flash Banner 2','','inherit','open','closed','','banner-2','','','2023-08-23 07:17:29','2023-08-23 07:17:29','',17,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png',0,'attachment','image/png',0),(6630,1,'2023-08-23 07:17:54','2023-08-23 07:17:54','','Flash Banner 3','','inherit','open','closed','','banner-3','','','2023-08-23 07:18:11','2023-08-23 07:18:11','',17,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png',0,'attachment','image/png',0),(6647,1,'2023-08-25 04:02:31','2023-08-25 04:02:31','','ESi-Go-logo','','inherit','open','closed','','esi-go','','','2023-08-25 04:02:45','2023-08-25 04:02:45','',0,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/ESi-Go.png',0,'attachment','image/png',0),(6649,1,'2023-08-25 04:09:12','2023-08-25 04:09:12','','icon-logo','','inherit','open','closed','','icon-logo','','','2023-08-25 04:09:30','2023-08-25 04:09:30','',0,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png',0,'attachment','image/png',0),(6650,1,'2023-08-25 04:09:30','2023-08-25 04:09:30','https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/cropped-icon-logo.png','cropped-icon-logo.png','','inherit','open','closed','','cropped-icon-logo-png','','','2023-08-25 04:09:30','2023-08-25 04:09:30','',0,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/cropped-icon-logo.png',0,'attachment','image/png',0),(6655,1,'2023-08-25 04:21:32','2023-08-25 04:21:32','','footer-icon','','inherit','open','closed','','footer-icon','','','2023-08-25 04:21:49','2023-08-25 04:21:49','',6626,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png',0,'attachment','image/png',0),(6736,1,'2023-08-28 07:50:51','2023-08-28 07:50:51','','globe2','','inherit','open','closed','','globe2','','','2023-08-28 07:50:51','2023-08-28 07:50:51','',30,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png',0,'attachment','image/png',0),(6791,1,'2023-08-28 08:37:09','2023-08-28 08:37:09','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n	flex-wrap: wrap;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 180px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 180px !important\n}\n\n.partner-logo img {\n    max-width: 180px !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n	.cs_site_branding img {\n		max-height: 90px !important\n	}\n}\n\n@media screen and (max-width: 767px){\n	.cs_site_branding img {\n		max-height: 70px !important\n	}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}\n\n.sidebar-main .widget ul li a:hover {\n	color: #004699 !important\n}\n\n.bizmax-blog-main-section__blog img{\n	width: 100%\n}','bizmax-wp','','publish','closed','closed','','bizmax-wp','','','2023-09-21 05:21:54','2023-09-21 05:21:54','',0,'https://esigo.futuremediatrix.com/2023/08/28/bizmax-wp/',0,'custom_css','',0),(6838,1,'2023-08-28 08:50:02','2023-08-28 08:50:02','<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n					<a>\n						Read More					</a>','slider component','','publish','closed','closed','','slider-article','','','2024-02-26 17:16:54','2024-02-26 09:16:54','',0,'https://esigo.futuremediatrix.com/?elementor_library=slider-article',0,'elementor_library','',0),(6882,1,'2023-08-28 09:26:01','2023-08-28 09:26:01','','Elementor-post-screenshot_6869_2023-08-28-09-26-01_74f8db8a.png','','inherit','open','closed','','elementor-post-screenshot_6869_2023-08-28-09-26-01_74f8db8a-png','','','2023-08-28 09:26:01','2023-08-28 09:26:01','',6869,'https://esigo.futuremediatrix.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_6869_2023-08-28-09-26-01_74f8db8a.png',0,'attachment','image/png',0),(6883,1,'2023-08-28 09:30:31','2023-08-28 09:30:31','As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.\n\nNow in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).\n\n<a href=\"https://www.channelasia.tech/article/671033/asean-embraces-managed-services-expect-channel-m-rise/%20\" target=\"_blank\" rel=\"noopener\">\nRead More\n</a>','As ASEAN embraces managed services, expect channel M&amp;A to rise','Partners must decide whether to evolve or exit as market transition begins.','publish','closed','closed','','https-www-channelasia-tech-article-671033-asean-embraces-managed-services-expect-channel-m-rise','','','2023-09-20 07:56:37','2023-09-20 07:56:37','',0,'https://esigo.futuremediatrix.com/?p=6883',0,'post','',0),(6884,1,'2023-08-28 09:30:12','2023-08-28 09:30:12','','cloud-migration-challenges-header','','inherit','open','closed','','cloud-migration-challenges-header','','','2023-08-28 09:30:12','2023-08-28 09:30:12','',6883,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/cloud-migration-challenges-header.png',0,'attachment','image/png',0),(6885,1,'2023-08-28 09:30:13','2023-08-28 09:30:13','','dreamstime_s_83083775','','inherit','open','closed','','dreamstime_s_83083775','','','2023-08-28 09:30:13','2023-08-28 09:30:13','',6883,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/dreamstime_s_83083775.jpg',0,'attachment','image/jpeg',0),(6886,1,'2023-08-28 09:30:13','2023-08-28 09:30:13','','How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits','','inherit','open','closed','','how-the-pandemic-has-changed-asean-managed-services-buying-habits','','','2023-08-28 09:30:13','2023-08-28 09:30:13','',6883,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/How-the-pandemic-has-changed-ASEAN-managed-services-buying-habits.webp',0,'attachment','image/webp',0),(6887,1,'2023-08-28 09:30:14','2023-08-28 09:30:14','','mark_iles_tra_2','','inherit','open','closed','','mark_iles_tra_2','','','2023-09-19 04:21:21','2023-09-19 04:21:21','',6883,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/mark_iles_tra_2.jpg',0,'attachment','image/jpeg',0),(6911,1,'2023-08-28 09:51:49','2023-08-28 09:51:49','Building out managed services capabilities in response to evolving customer buying patterns ranks as a leading priority for channel partners across Southeast Asia, as the ecosystem embraces subscription-based selling.\n\nAccording to EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- growing annuity revenue currently stands tall as the no.1 strategic objective for value-added resellers, system integrators and solution providers in the region.\n\n<a href=\"https://www.channelasia.tech/article/692441/managed-services-now-top-partner-priority-asean/%20\" target=\"_blank\" rel=\"noopener\">\nRead More\n</a>','Managed services now top partner priority in ASEAN','EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- ','publish','closed','closed','','managed-services-now-top-partner-priority-in-asean','','','2023-09-21 04:46:34','2023-09-21 04:46:34','',0,'https://esigo.futuremediatrix.com/?p=6911',0,'post','',0),(6917,1,'2023-08-28 09:53:55','2023-08-28 09:53:55','ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19, with skills shortages and the ease of migration, along with organisational-driven initiatives now the top three drivers for organisations considering managed ICT services.\n\n“The COVID-19 pandemic not only has accelerated managed service adoption in ASEAN, including the SMB [small- to medium-sized business] segment, but also changed enterprises’ buying behavior while considering new ICT solutions,” said Alfie Amir, principal analyst at industry research firm GlobalData. “Scalability, cost-savings and product lifecycle are no longer the top drivers for managed services.”\n\n<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/%20\" target=\"_blank\" rel=\"noopener\">\nRead More\n</a>','How the pandemic has changed ASEAN managed services buying habits (Channel Asia)','ASEAN enterprises’ managed services buying criteria','publish','closed','closed','','how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia','','','2023-09-20 07:56:29','2023-09-20 07:56:29','',0,'https://esigo.futuremediatrix.com/?p=6917',0,'post','',0),(6923,1,'2023-08-28 09:57:11','2023-08-28 09:57:11','<p>Operating in the cloud has many benefits for organizations, including:</p><p>- Increased efficiency in operations and management<br />- Better support and access for a distributed workforce<br />- Integration with the IT tech stack<br />- Reduced costs</p><p>However, even as many businesses rush to adopt cloud computing processes, it is not an easy initiative. Cloud migration introduces its own challenges. Whether you are looking to take advantage of cloud infrastructure, platforms, or software services, use these solutions to help you navigate a successful cloud migration.</p>		\n			<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\" target=\"_blank\" rel=\"noopener\">\n						Read More\n					</a>','Overcoming the most common cloud migration challenges','The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them','publish','closed','closed','','overcoming-the-most-common-cloud-migration-challenges','','','2023-09-20 07:56:24','2023-09-20 07:56:24','',0,'https://esigo.futuremediatrix.com/?p=6923',0,'post','',0),(6936,1,'2023-08-29 03:51:48','2023-08-29 03:51:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 03:51:48','2023-08-29 03:51:48','',30,'https://esigo.futuremediatrix.com/?p=6936',0,'revision','',0),(6937,1,'2023-08-29 03:51:48','2023-08-29 03:51:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 03:51:48','2023-08-29 03:51:48','',30,'https://esigo.futuremediatrix.com/?p=6937',0,'revision','',0),(6938,1,'2023-08-29 03:51:48','2023-08-29 03:51:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 03:51:48','2023-08-29 03:51:48','',30,'https://esigo.futuremediatrix.com/?p=6938',0,'revision','',0),(6939,1,'2023-08-29 03:52:14','2023-08-29 03:52:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 03:52:14','2023-08-29 03:52:14','',30,'https://esigo.futuremediatrix.com/?p=6939',0,'revision','',0),(6940,1,'2023-08-29 03:52:14','2023-08-29 03:52:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 03:52:14','2023-08-29 03:52:14','',30,'https://esigo.futuremediatrix.com/?p=6940',0,'revision','',0),(6941,1,'2023-08-29 03:52:14','2023-08-29 03:52:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 03:52:14','2023-08-29 03:52:14','',30,'https://esigo.futuremediatrix.com/?p=6941',0,'revision','',0),(6943,1,'2023-08-29 04:00:28','2023-08-29 04:00:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:00:28','2023-08-29 04:00:28','',30,'https://esigo.futuremediatrix.com/?p=6943',0,'revision','',0),(6944,1,'2023-08-29 04:00:28','2023-08-29 04:00:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:00:28','2023-08-29 04:00:28','',30,'https://esigo.futuremediatrix.com/?p=6944',0,'revision','',0),(6945,1,'2023-08-29 04:00:28','2023-08-29 04:00:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:00:28','2023-08-29 04:00:28','',30,'https://esigo.futuremediatrix.com/?p=6945',0,'revision','',0),(6947,1,'2023-08-29 04:10:43','2023-08-29 04:10:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:10:43','2023-08-29 04:10:43','',30,'https://esigo.futuremediatrix.com/?p=6947',0,'revision','',0),(6948,1,'2023-08-29 04:10:43','2023-08-29 04:10:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:10:43','2023-08-29 04:10:43','',30,'https://esigo.futuremediatrix.com/?p=6948',0,'revision','',0),(6949,1,'2023-08-29 04:10:43','2023-08-29 04:10:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:10:43','2023-08-29 04:10:43','',30,'https://esigo.futuremediatrix.com/?p=6949',0,'revision','',0),(6950,1,'2023-08-29 04:11:47','2023-08-29 04:11:47','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:11:47','2023-08-29 04:11:47','',30,'https://esigo.futuremediatrix.com/?p=6950',0,'revision','',0),(6951,1,'2023-08-29 04:11:47','2023-08-29 04:11:47','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:11:47','2023-08-29 04:11:47','',30,'https://esigo.futuremediatrix.com/?p=6951',0,'revision','',0),(6952,1,'2023-08-29 04:11:47','2023-08-29 04:11:47','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:11:47','2023-08-29 04:11:47','',30,'https://esigo.futuremediatrix.com/?p=6952',0,'revision','',0),(6953,1,'2023-08-29 04:12:40','2023-08-29 04:12:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:12:40','2023-08-29 04:12:40','',30,'https://esigo.futuremediatrix.com/?p=6953',0,'revision','',0),(6954,1,'2023-08-29 04:12:40','2023-08-29 04:12:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:12:40','2023-08-29 04:12:40','',30,'https://esigo.futuremediatrix.com/?p=6954',0,'revision','',0),(6955,1,'2023-08-29 04:12:40','2023-08-29 04:12:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-29 04:12:40','2023-08-29 04:12:40','',30,'https://esigo.futuremediatrix.com/?p=6955',0,'revision','',0),(6957,1,'2023-08-29 07:18:38','2023-08-29 07:18:38','','ESi-Go-1024x424 putih','','inherit','open','closed','','esi-go-1024x424-putih','','','2023-08-29 07:18:38','2023-08-29 07:18:38','',0,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/ESi-Go-1024x424-putih.png',0,'attachment','image/png',0),(6958,1,'2023-08-29 07:23:27','2023-08-29 07:23:27','<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\r\n                            01\r\n                        <h2>Meeting</h2>\r\n                        <p>We provide a range of digital marketing solutions.</p>\r\n                      <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/arrow_shape.png\"> \r\n                            <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\r\n                            02\r\n                        <h2>Development</h2>\r\n                        <p>We provide a range of digital marketing solutions.</p>\r\n                      <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/arrow_shape.png\"> \r\n                            <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\r\n                            03\r\n                        <h2>Release</h2>\r\n                        <p>We provide a range of digital marketing solutions.</p>\r\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\r\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\r\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\r\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\r\n						<p>Have Any Question?</p>\r\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:070 4531 9507 \" style=\"color:#FFFFFF\">+ 070 4531 9507 </a>\r\n						</h2>\r\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\r\n						<p>Send Email</p>\r\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:bizmax@laralink.com\" style=\"color:#FFFFFF\">bizmax@laralink.com</a>\r\n						</h2>\r\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\r\n						<p>Address</p>\r\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">Yewtree Cottage, Kings Pyon, HR4 8PZ</a>\r\n						</h2>\r\n                    <h2> Contact Us</h2>\r\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\r\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\r\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\r\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.7\" />\r\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\r\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\r\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\r\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\r\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\r\n				</p>\r\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\r\n				</p>\r\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\r\n				</p>\r\n			<p><button>Submit Now</button>\r\n			</p>\r\n</form>\r\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">','Contact V2','','inherit','closed','closed','','6535-revision-v1','','','2023-08-29 07:23:27','2023-08-29 07:23:27','',6535,'https://esigo.futuremediatrix.com/?p=6958',0,'revision','',0),(6959,1,'2023-08-29 07:23:27','2023-08-29 07:23:27','<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\r\n                            01\r\n                        <h2>Meeting</h2>\r\n                        <p>We provide a range of digital marketing solutions.</p>\r\n                      <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/arrow_shape.png\"> \r\n                            <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\r\n                            02\r\n                        <h2>Development</h2>\r\n                        <p>We provide a range of digital marketing solutions.</p>\r\n                      <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/arrow_shape.png\"> \r\n                            <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\r\n                            03\r\n                        <h2>Release</h2>\r\n                        <p>We provide a range of digital marketing solutions.</p>\r\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\r\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\r\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\r\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\r\n						<p>Have Any Question?</p>\r\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:070 4531 9507 \" style=\"color:#FFFFFF\">+ 070 4531 9507 </a>\r\n						</h2>\r\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\r\n						<p>Send Email</p>\r\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:bizmax@laralink.com\" style=\"color:#FFFFFF\">bizmax@laralink.com</a>\r\n						</h2>\r\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\r\n						<p>Address</p>\r\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">Yewtree Cottage, Kings Pyon, HR4 8PZ</a>\r\n						</h2>\r\n                    <h2> Contact Us</h2>\r\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\r\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\r\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\r\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.7.7\" />\r\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\r\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\r\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\r\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\r\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\r\n				</p>\r\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\r\n				</p>\r\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\r\n				</p>\r\n			<p><button>Submit Now</button>\r\n			</p>\r\n</form>\r\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">','Contact V2','','inherit','closed','closed','','6535-revision-v1','','','2023-08-29 07:23:27','2023-08-29 07:23:27','',6535,'https://esigo.futuremediatrix.com/?p=6959',0,'revision','',0),(6960,1,'2023-08-29 07:23:27','2023-08-29 07:23:27','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:070 4531 9507 \" style=\"color:#FFFFFF\">+ 070 4531 9507 </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:bizmax@laralink.com\" style=\"color:#FFFFFF\">bizmax@laralink.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">Yewtree Cottage, Kings Pyon, HR4 8PZ</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"240\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">','Contact V2','','inherit','closed','closed','','6535-revision-v1','','','2023-08-29 07:23:27','2023-08-29 07:23:27','',6535,'https://esigo.futuremediatrix.com/?p=6960',0,'revision','',0),(6961,1,'2023-08-29 07:23:47','2023-08-29 07:23:47','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:070 4531 9507 \" style=\"color:#FFFFFF\">+ 070 4531 9507 </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:bizmax@laralink.com\" style=\"color:#FFFFFF\">bizmax@laralink.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">Yewtree Cottage, Kings Pyon, HR4 8PZ</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"240\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-08-29 07:23:47','2023-08-29 07:23:47','',6535,'https://esigo.futuremediatrix.com/?p=6961',0,'revision','',0),(6962,1,'2023-08-29 07:34:12','2023-08-29 07:34:12','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:070 4531 9507 \" style=\"color:#FFFFFF\">+ 070 4531 9507 </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:bizmax@laralink.com\" style=\"color:#FFFFFF\">bizmax@laralink.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">Yewtree Cottage, Kings Pyon, HR4 8PZ</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"181\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-08-29 07:34:12','2023-08-29 07:34:12','',17,'https://esigo.futuremediatrix.com/?p=6962',0,'revision','',0),(6963,1,'2023-08-29 07:34:12','2023-08-29 07:34:12','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:070 4531 9507 \" style=\"color:#FFFFFF\">+ 070 4531 9507 </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:bizmax@laralink.com\" style=\"color:#FFFFFF\">bizmax@laralink.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">Yewtree Cottage, Kings Pyon, HR4 8PZ</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"181\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-08-29 07:34:12','2023-08-29 07:34:12','',17,'https://esigo.futuremediatrix.com/?p=6963',0,'revision','',0),(6964,1,'2023-08-29 07:34:12','2023-08-29 07:34:12','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"140\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-08-29 07:34:12','2023-08-29 07:34:12','',17,'https://esigo.futuremediatrix.com/?p=6964',0,'revision','',0),(6965,1,'2023-08-29 07:36:27','2023-08-29 07:36:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+07045319507%20\">+ 070 4531 9507 </a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:36:27','2023-08-29 07:36:27','',6626,'https://esigo.futuremediatrix.com/?p=6965',0,'revision','',0),(6966,1,'2023-08-29 07:36:28','2023-08-29 07:36:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+07045319507%20\">+ 070 4531 9507 </a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:36:28','2023-08-29 07:36:28','',6626,'https://esigo.futuremediatrix.com/?p=6966',0,'revision','',0),(6967,1,'2023-08-29 07:36:28','2023-08-29 07:36:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+07045319507%20\">+ 070 4531 9507 </a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:36:28','2023-08-29 07:36:28','',6626,'https://esigo.futuremediatrix.com/?p=6967',0,'revision','',0),(6968,1,'2023-08-29 07:36:36','2023-08-29 07:36:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+07045319507%20\">+ 070 4531 9507 </a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:36:36','2023-08-29 07:36:36','',6626,'https://esigo.futuremediatrix.com/?p=6968',0,'revision','',0),(6969,1,'2023-08-29 07:36:36','2023-08-29 07:36:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+07045319507%20\">+ 070 4531 9507 </a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:36:36','2023-08-29 07:36:36','',6626,'https://esigo.futuremediatrix.com/?p=6969',0,'revision','',0),(6970,1,'2023-08-29 07:36:36','2023-08-29 07:36:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+07045319507%20\">+ 070 4531 9507 </a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:36:36','2023-08-29 07:36:36','',6626,'https://esigo.futuremediatrix.com/?p=6970',0,'revision','',0),(6971,1,'2023-08-29 07:37:10','2023-08-29 07:37:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+07045319507%20\">+ 070 4531 9507 </a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:37:10','2023-08-29 07:37:10','',6626,'https://esigo.futuremediatrix.com/?p=6971',0,'revision','',0),(6972,1,'2023-08-29 07:37:10','2023-08-29 07:37:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+07045319507%20\">+ 070 4531 9507 </a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:37:10','2023-08-29 07:37:10','',6626,'https://esigo.futuremediatrix.com/?p=6972',0,'revision','',0),(6973,1,'2023-08-29 07:37:10','2023-08-29 07:37:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:37:10','2023-08-29 07:37:10','',6626,'https://esigo.futuremediatrix.com/?p=6973',0,'revision','',0),(6974,1,'2023-08-29 07:37:27','2023-08-29 07:37:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:37:27','2023-08-29 07:37:27','',6626,'https://esigo.futuremediatrix.com/?p=6974',0,'revision','',0),(6975,1,'2023-08-29 07:37:27','2023-08-29 07:37:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:bizmax@laralink.com\">bizmax@laralink.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:37:27','2023-08-29 07:37:27','',6626,'https://esigo.futuremediatrix.com/?p=6975',0,'revision','',0),(6976,1,'2023-08-29 07:37:27','2023-08-29 07:37:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:37:27','2023-08-29 07:37:27','',6626,'https://esigo.futuremediatrix.com/?p=6976',0,'revision','',0),(6977,1,'2023-08-29 07:39:15','2023-08-29 07:39:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:39:15','2023-08-29 07:39:15','',6626,'https://esigo.futuremediatrix.com/?p=6977',0,'revision','',0),(6978,1,'2023-08-29 07:39:15','2023-08-29 07:39:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://bizmax.laralink.com/\" data-wplink-url-error=\"true\">bizmax.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:39:15','2023-08-29 07:39:15','',6626,'https://esigo.futuremediatrix.com/?p=6978',0,'revision','',0),(6979,1,'2023-08-29 07:39:15','2023-08-29 07:39:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:39:15','2023-08-29 07:39:15','',6626,'https://esigo.futuremediatrix.com/?p=6979',0,'revision','',0),(6980,1,'2023-08-29 07:42:10','2023-08-29 07:42:10','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:070 4531 9507 \" style=\"color:#FFFFFF\">+ 070 4531 9507 </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:bizmax@laralink.com\" style=\"color:#FFFFFF\">bizmax@laralink.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">Yewtree Cottage, Kings Pyon, HR4 8PZ</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"240\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-08-29 07:42:10','2023-08-29 07:42:10','',6535,'https://esigo.futuremediatrix.com/?p=6980',0,'revision','',0),(6981,1,'2023-08-29 07:42:10','2023-08-29 07:42:10','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:070 4531 9507 \" style=\"color:#FFFFFF\">+ 070 4531 9507 </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:bizmax@laralink.com\" style=\"color:#FFFFFF\">bizmax@laralink.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">Yewtree Cottage, Kings Pyon, HR4 8PZ</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"240\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-08-29 07:42:10','2023-08-29 07:42:10','',6535,'https://esigo.futuremediatrix.com/?p=6981',0,'revision','',0),(6982,1,'2023-08-29 07:42:10','2023-08-29 07:42:10','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978\" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"207\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-08-29 07:42:10','2023-08-29 07:42:10','',6535,'https://esigo.futuremediatrix.com/?p=6982',0,'revision','',0),(6983,1,'2023-08-29 07:42:31','2023-08-29 07:42:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:42:31','2023-08-29 07:42:31','',6626,'https://esigo.futuremediatrix.com/?p=6983',0,'revision','',0),(6984,1,'2023-08-29 07:42:31','2023-08-29 07:42:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n                  <p>I\'ve been using [business name] for the past year \nand I\'m so glad I did. Their products and services are top-notch and \ntheir customer service is amazing. I would highly recommend them to \nanyone</p>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>At vero eos et accusamus et iusto odio as part dignissimos ducimus qui blandit.</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:42:31','2023-08-29 07:42:31','',6626,'https://esigo.futuremediatrix.com/?p=6984',0,'revision','',0),(6985,1,'2023-08-29 07:42:31','2023-08-29 07:42:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:42:31','2023-08-29 07:42:31','',6626,'https://esigo.futuremediatrix.com/?p=6985',0,'revision','',0),(6986,1,'2023-08-29 07:43:10','2023-08-29 07:43:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:43:10','2023-08-29 07:43:10','',6626,'https://esigo.futuremediatrix.com/?p=6986',0,'revision','',0),(6987,1,'2023-08-29 07:43:10','2023-08-29 07:43:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:43:10','2023-08-29 07:43:10','',6626,'https://esigo.futuremediatrix.com/?p=6987',0,'revision','',0),(6988,1,'2023-08-29 07:43:10','2023-08-29 07:43:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:43:10','2023-08-29 07:43:10','',6626,'https://esigo.futuremediatrix.com/?p=6988',0,'revision','',0),(6989,1,'2023-08-29 07:45:49','2023-08-29 07:45:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:45:49','2023-08-29 07:45:49','',6626,'https://esigo.futuremediatrix.com/?p=6989',0,'revision','',0),(6990,1,'2023-08-29 07:45:49','2023-08-29 07:45:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://bizmax.laralink.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/portfolio/\">\n											Portfolio\n											</a>\n									</li>\n								<li>\n											<a href=\"https://bizmax.laralink.com/service-v1/\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/blog/\">\n											Support \n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/faq/\">\n											Pricing Page\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/price/\">\n											 New Projects\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/about-us/\">\n											Contact\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:45:49','2023-08-29 07:45:49','',6626,'https://esigo.futuremediatrix.com/?p=6990',0,'revision','',0),(6991,1,'2023-08-29 07:45:49','2023-08-29 07:45:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-08-29 07:45:49','2023-08-29 07:45:49','',6626,'https://esigo.futuremediatrix.com/?p=6991',0,'revision','',0),(6993,1,'2023-08-29 15:25:19','2023-08-29 15:25:19','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-08-29 15:25:19','2023-08-29 15:25:19','',6791,'https://esigo.futuremediatrix.com/?p=6993',0,'revision','',0),(6994,1,'2023-08-30 04:33:10','2023-08-30 04:33:10','','Temp Slide-1','','inherit','open','closed','','temp-slide-1','','','2023-08-30 04:33:10','2023-08-30 04:33:10','',30,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png',0,'attachment','image/png',0),(6995,1,'2023-08-30 04:34:15','2023-08-30 04:34:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:34:15','2023-08-30 04:34:15','',30,'https://esigo.futuremediatrix.com/?p=6995',0,'revision','',0),(6996,1,'2023-08-30 04:34:15','2023-08-30 04:34:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"320\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-1024x512.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-300x150.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2-768x384.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/globe2.png 1173w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:34:15','2023-08-30 04:34:15','',30,'https://esigo.futuremediatrix.com/?p=6996',0,'revision','',0),(6997,1,'2023-08-30 04:34:16','2023-08-30 04:34:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"360\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:34:16','2023-08-30 04:34:16','',30,'https://esigo.futuremediatrix.com/?p=6997',0,'revision','',0),(6998,1,'2023-08-30 04:35:19','2023-08-30 04:35:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"360\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:35:19','2023-08-30 04:35:19','',30,'https://esigo.futuremediatrix.com/?p=6998',0,'revision','',0),(6999,1,'2023-08-30 04:35:19','2023-08-30 04:35:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"360\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:35:19','2023-08-30 04:35:19','',30,'https://esigo.futuremediatrix.com/?p=6999',0,'revision','',0),(7000,1,'2023-08-30 04:35:19','2023-08-30 04:35:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"360\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:35:19','2023-08-30 04:35:19','',30,'https://esigo.futuremediatrix.com/?p=7000',0,'revision','',0),(7001,1,'2023-08-30 04:35:53','2023-08-30 04:35:53','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"360\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:35:53','2023-08-30 04:35:53','',30,'https://esigo.futuremediatrix.com/?p=7001',0,'revision','',0);
INSERT INTO `wpsl_posts` VALUES (7002,1,'2023-08-30 04:35:53','2023-08-30 04:35:53','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"360\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:35:53','2023-08-30 04:35:53','',30,'https://esigo.futuremediatrix.com/?p=7002',0,'revision','',0),(7003,1,'2023-08-30 04:35:53','2023-08-30 04:35:53','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"360\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:35:53','2023-08-30 04:35:53','',30,'https://esigo.futuremediatrix.com/?p=7003',0,'revision','',0),(7004,1,'2023-08-30 04:36:14','2023-08-30 04:36:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"360\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:36:14','2023-08-30 04:36:14','',30,'https://esigo.futuremediatrix.com/?p=7004',0,'revision','',0),(7005,1,'2023-08-30 04:36:14','2023-08-30 04:36:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"640\" height=\"360\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:36:14','2023-08-30 04:36:14','',30,'https://esigo.futuremediatrix.com/?p=7005',0,'revision','',0),(7006,1,'2023-08-30 04:36:14','2023-08-30 04:36:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"2667\" height=\"1500\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png 2667w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 2667px) 100vw, 2667px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:36:14','2023-08-30 04:36:14','',30,'https://esigo.futuremediatrix.com/?p=7006',0,'revision','',0),(7007,1,'2023-08-30 04:37:22','2023-08-30 04:37:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"2667\" height=\"1500\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png 2667w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 2667px) 100vw, 2667px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:37:22','2023-08-30 04:37:22','',30,'https://esigo.futuremediatrix.com/?p=7007',0,'revision','',0),(7008,1,'2023-08-30 04:37:22','2023-08-30 04:37:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"2667\" height=\"1500\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png 2667w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 2667px) 100vw, 2667px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:37:22','2023-08-30 04:37:22','',30,'https://esigo.futuremediatrix.com/?p=7008',0,'revision','',0),(7009,1,'2023-08-30 04:37:22','2023-08-30 04:37:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"2667\" height=\"1500\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png 2667w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 2667px) 100vw, 2667px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-08-30 04:37:22','2023-08-30 04:37:22','',30,'https://esigo.futuremediatrix.com/?p=7009',0,'revision','',0),(7010,1,'2023-09-01 09:24:36','2023-09-01 09:24:36','','map','','inherit','open','closed','','map','','','2023-09-01 09:24:57','2023-09-01 09:24:57','',30,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png',0,'attachment','image/png',0),(7011,1,'2023-09-01 09:25:02','2023-09-01 09:25:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"2667\" height=\"1500\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png 2667w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 2667px) 100vw, 2667px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-09-01 09:25:02','2023-09-01 09:25:02','',30,'https://esigo.futuremediatrix.com/?p=7011',0,'revision','',0),(7012,1,'2023-09-01 09:25:02','2023-09-01 09:25:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"2667\" height=\"1500\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1.png 2667w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-300x169.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1024x576.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-768x432.png 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-1536x864.png 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Temp-Slide-1-2048x1152.png 2048w\" sizes=\"(max-width: 2667px) 100vw, 2667px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-09-01 09:25:02','2023-09-01 09:25:02','',30,'https://esigo.futuremediatrix.com/?p=7012',0,'revision','',0),(7013,1,'2023-09-01 09:25:02','2023-09-01 09:25:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About US','','inherit','closed','closed','','30-revision-v1','','','2023-09-01 09:25:02','2023-09-01 09:25:02','',30,'https://esigo.futuremediatrix.com/?p=7013',0,'revision','',0),(7014,1,'2023-09-01 09:26:38','2023-09-01 09:26:38','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"140\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:26:38','2023-09-01 09:26:38','',17,'https://esigo.futuremediatrix.com/?p=7014',0,'revision','',0),(7015,1,'2023-09-01 09:26:38','2023-09-01 09:26:38','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"140\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:26:38','2023-09-01 09:26:38','',17,'https://esigo.futuremediatrix.com/?p=7015',0,'revision','',0),(7016,1,'2023-09-01 09:26:38','2023-09-01 09:26:38','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"167\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:26:38','2023-09-01 09:26:38','',17,'https://esigo.futuremediatrix.com/?p=7016',0,'revision','',0),(7017,1,'2023-09-01 09:27:09','2023-09-01 09:27:09','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"167\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:27:09','2023-09-01 09:27:09','',17,'https://esigo.futuremediatrix.com/?p=7017',0,'revision','',0),(7018,1,'2023-09-01 09:27:09','2023-09-01 09:27:09','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"167\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:27:09','2023-09-01 09:27:09','',17,'https://esigo.futuremediatrix.com/?p=7018',0,'revision','',0),(7019,1,'2023-09-01 09:27:09','2023-09-01 09:27:09','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"239\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:27:09','2023-09-01 09:27:09','',17,'https://esigo.futuremediatrix.com/?p=7019',0,'revision','',0),(7020,1,'2023-09-01 09:27:45','2023-09-01 09:27:45','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"239\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:27:45','2023-09-01 09:27:45','',17,'https://esigo.futuremediatrix.com/?p=7020',0,'revision','',0),(7021,1,'2023-09-01 09:27:45','2023-09-01 09:27:45','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"239\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:27:45','2023-09-01 09:27:45','',17,'https://esigo.futuremediatrix.com/?p=7021',0,'revision','',0),(7022,1,'2023-09-01 09:27:45','2023-09-01 09:27:45','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"46\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:27:45','2023-09-01 09:27:45','',17,'https://esigo.futuremediatrix.com/?p=7022',0,'revision','',0),(7023,1,'2023-09-01 09:28:18','2023-09-01 09:28:18','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"46\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:28:18','2023-09-01 09:28:18','',17,'https://esigo.futuremediatrix.com/?p=7023',0,'revision','',0),(7024,1,'2023-09-01 09:28:18','2023-09-01 09:28:18','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"46\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:28:18','2023-09-01 09:28:18','',17,'https://esigo.futuremediatrix.com/?p=7024',0,'revision','',0),(7025,1,'2023-09-01 09:28:18','2023-09-01 09:28:18','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"30\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:28:18','2023-09-01 09:28:18','',17,'https://esigo.futuremediatrix.com/?p=7025',0,'revision','',0),(7026,1,'2023-09-01 09:29:16','2023-09-01 09:29:16','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"30\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:29:16','2023-09-01 09:29:16','',17,'https://esigo.futuremediatrix.com/?p=7026',0,'revision','',0),(7027,1,'2023-09-01 09:29:16','2023-09-01 09:29:16','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"30\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:29:16','2023-09-01 09:29:16','',17,'https://esigo.futuremediatrix.com/?p=7027',0,'revision','',0),(7028,1,'2023-09-01 09:29:16','2023-09-01 09:29:16','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"100\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:29:16','2023-09-01 09:29:16','',17,'https://esigo.futuremediatrix.com/?p=7028',0,'revision','',0),(7029,1,'2023-09-01 09:32:11','2023-09-01 09:32:11','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:32:11','2023-09-01 09:32:11','',6626,'https://esigo.futuremediatrix.com/?p=7029',0,'revision','',0),(7030,1,'2023-09-01 09:32:11','2023-09-01 09:32:11','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2><a href=\"mailto:%20marketing@esi-asia.com\"> marketing@esi-asia.com</a></h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:32:11','2023-09-01 09:32:11','',6626,'https://esigo.futuremediatrix.com/?p=7030',0,'revision','',0),(7031,1,'2023-09-01 09:32:11','2023-09-01 09:32:11','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:32:11','2023-09-01 09:32:11','',6626,'https://esigo.futuremediatrix.com/?p=7031',0,'revision','',0),(7032,1,'2023-09-01 09:33:06','2023-09-01 09:33:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:33:06','2023-09-01 09:33:06','',6626,'https://esigo.futuremediatrix.com/?p=7032',0,'revision','',0),(7033,1,'2023-09-01 09:33:06','2023-09-01 09:33:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:33:06','2023-09-01 09:33:06','',6626,'https://esigo.futuremediatrix.com/?p=7033',0,'revision','',0),(7034,1,'2023-09-01 09:33:06','2023-09-01 09:33:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:33:06','2023-09-01 09:33:06','',6626,'https://esigo.futuremediatrix.com/?p=7034',0,'revision','',0),(7035,1,'2023-09-01 09:34:16','2023-09-01 09:34:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:34:16','2023-09-01 09:34:16','',6626,'https://esigo.futuremediatrix.com/?p=7035',0,'revision','',0),(7036,1,'2023-09-01 09:34:16','2023-09-01 09:34:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"tel:+6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:34:16','2023-09-01 09:34:16','',6626,'https://esigo.futuremediatrix.com/?p=7036',0,'revision','',0),(7037,1,'2023-09-01 09:34:16','2023-09-01 09:34:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:34:16','2023-09-01 09:34:16','',6626,'https://esigo.futuremediatrix.com/?p=7037',0,'revision','',0),(7038,1,'2023-09-01 09:37:03','2023-09-01 09:37:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:37:03','2023-09-01 09:37:03','',6626,'https://esigo.futuremediatrix.com/?p=7038',0,'revision','',0),(7039,1,'2023-09-01 09:37:03','2023-09-01 09:37:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"157\" height=\"48\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer-icon.png\" alt=\"footer-icon\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:37:03','2023-09-01 09:37:03','',6626,'https://esigo.futuremediatrix.com/?p=7039',0,'revision','',0),(7040,1,'2023-09-01 09:37:03','2023-09-01 09:37:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:37:03','2023-09-01 09:37:03','',6626,'https://esigo.futuremediatrix.com/?p=7040',0,'revision','',0),(7041,1,'2023-09-01 09:39:50','2023-09-01 09:39:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:39:50','2023-09-01 09:39:50','',6626,'https://esigo.futuremediatrix.com/?p=7041',0,'revision','',0),(7042,1,'2023-09-01 09:39:50','2023-09-01 09:39:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:39:50','2023-09-01 09:39:50','',6626,'https://esigo.futuremediatrix.com/?p=7042',0,'revision','',0),(7043,1,'2023-09-01 09:39:51','2023-09-01 09:39:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:39:51','2023-09-01 09:39:51','',6626,'https://esigo.futuremediatrix.com/?p=7043',0,'revision','',0),(7044,1,'2023-09-01 09:40:51','2023-09-01 09:40:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:40:51','2023-09-01 09:40:51','',6626,'https://esigo.futuremediatrix.com/?p=7044',0,'revision','',0),(7045,1,'2023-09-01 09:40:51','2023-09-01 09:40:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:40:51','2023-09-01 09:40:51','',6626,'https://esigo.futuremediatrix.com/?p=7045',0,'revision','',0),(7046,1,'2023-09-01 09:40:51','2023-09-01 09:40:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:40:51','2023-09-01 09:40:51','',6626,'https://esigo.futuremediatrix.com/?p=7046',0,'revision','',0),(7047,1,'2023-09-01 09:44:59','2023-09-01 09:44:59','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"100\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:44:59','2023-09-01 09:44:59','',17,'https://esigo.futuremediatrix.com/?p=7047',0,'revision','',0),(7048,1,'2023-09-01 09:44:59','2023-09-01 09:44:59','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"100\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:44:59','2023-09-01 09:44:59','',17,'https://esigo.futuremediatrix.com/?p=7048',0,'revision','',0),(7049,1,'2023-09-01 09:45:00','2023-09-01 09:45:00','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"128\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-01 09:45:00','2023-09-01 09:45:00','',17,'https://esigo.futuremediatrix.com/?p=7049',0,'revision','',0),(7050,1,'2023-09-01 09:47:18','2023-09-01 09:47:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:47:18','2023-09-01 09:47:18','',6626,'https://esigo.futuremediatrix.com/?p=7050',0,'revision','',0);
INSERT INTO `wpsl_posts` VALUES (7051,1,'2023-09-01 09:47:18','2023-09-01 09:47:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6568171978\">+ 65 6817 1978</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:47:18','2023-09-01 09:47:18','',6626,'https://esigo.futuremediatrix.com/?p=7051',0,'revision','',0),(7052,1,'2023-09-01 09:47:18','2023-09-01 09:47:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6596772316\">+65 9677 2316</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:47:18','2023-09-01 09:47:18','',6626,'https://esigo.futuremediatrix.com/?p=7052',0,'revision','',0),(7053,1,'2023-09-01 09:55:08','2023-09-01 09:55:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6596772316\">+65 9677 2316</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:55:08','2023-09-01 09:55:08','',6626,'https://esigo.futuremediatrix.com/?p=7053',0,'revision','',0),(7054,1,'2023-09-01 09:55:08','2023-09-01 09:55:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6596772316\">+65 9677 2316</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:55:08','2023-09-01 09:55:08','',6626,'https://esigo.futuremediatrix.com/?p=7054',0,'revision','',0),(7055,1,'2023-09-01 09:55:08','2023-09-01 09:55:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6596772316\">+65 9677 2316</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 09:55:08','2023-09-01 09:55:08','',6626,'https://esigo.futuremediatrix.com/?p=7055',0,'revision','',0),(7059,1,'2023-09-01 10:05:39','2023-09-01 10:05:39','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978\" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"207\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:05:39','2023-09-01 10:05:39','',6535,'https://esigo.futuremediatrix.com/?p=7059',0,'revision','',0),(7060,1,'2023-09-01 10:05:39','2023-09-01 10:05:39','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978\" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"207\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:05:39','2023-09-01 10:05:39','',6535,'https://esigo.futuremediatrix.com/?p=7060',0,'revision','',0),(7061,1,'2023-09-01 10:05:40','2023-09-01 10:05:40','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978\" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"84\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:05:40','2023-09-01 10:05:40','',6535,'https://esigo.futuremediatrix.com/?p=7061',0,'revision','',0),(7062,1,'2023-09-01 10:06:20','2023-09-01 10:06:20','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978\" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"84\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:06:20','2023-09-01 10:06:20','',6535,'https://esigo.futuremediatrix.com/?p=7062',0,'revision','',0),(7063,1,'2023-09-01 10:06:20','2023-09-01 10:06:20','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978\" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"84\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:06:20','2023-09-01 10:06:20','',6535,'https://esigo.futuremediatrix.com/?p=7063',0,'revision','',0),(7064,1,'2023-09-01 10:06:20','2023-09-01 10:06:20','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"218\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:06:20','2023-09-01 10:06:20','',6535,'https://esigo.futuremediatrix.com/?p=7064',0,'revision','',0),(7065,1,'2023-09-01 10:07:09','2023-09-01 10:07:09','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"218\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:07:09','2023-09-01 10:07:09','',6535,'https://esigo.futuremediatrix.com/?p=7065',0,'revision','',0),(7066,1,'2023-09-01 10:07:09','2023-09-01 10:07:09','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"218\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:07:09','2023-09-01 10:07:09','',6535,'https://esigo.futuremediatrix.com/?p=7066',0,'revision','',0),(7067,1,'2023-09-01 10:07:09','2023-09-01 10:07:09','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"25\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:07:09','2023-09-01 10:07:09','',6535,'https://esigo.futuremediatrix.com/?p=7067',0,'revision','',0),(7068,1,'2023-09-01 10:08:58','2023-09-01 10:08:58','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6596772316\">+65 9677 2316</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 10:08:58','2023-09-01 10:08:58','',6626,'https://esigo.futuremediatrix.com/?p=7068',0,'revision','',0),(7069,1,'2023-09-01 10:08:58','2023-09-01 10:08:58','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6596772316\">+65 9677 2316</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 10:08:58','2023-09-01 10:08:58','',6626,'https://esigo.futuremediatrix.com/?p=7069',0,'revision','',0),(7070,1,'2023-09-01 10:08:58','2023-09-01 10:08:58','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6596772316\">+65 9677 2316</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-01 10:08:58','2023-09-01 10:08:58','',6626,'https://esigo.futuremediatrix.com/?p=7070',0,'revision','',0),(7072,1,'2023-09-01 10:10:50','2023-09-01 10:10:50','','Default Kit','','inherit','closed','closed','','8-revision-v1','','','2023-09-01 10:10:50','2023-09-01 10:10:50','',8,'https://esigo.futuremediatrix.com/?p=7072',0,'revision','',0),(7073,1,'2023-09-01 10:14:55','2023-09-01 10:14:55','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-01 10:14:55','2023-09-01 10:14:55','',30,'https://esigo.futuremediatrix.com/?p=7073',0,'revision','',0),(7074,1,'2023-09-01 10:16:52','2023-09-01 10:16:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','publish','closed','closed','','about-us','','','2023-09-01 10:16:52','2023-09-01 10:16:52','',0,'https://esigo.futuremediatrix.com/?elementor_library=about-us',0,'elementor_library','',0),(7075,1,'2023-09-01 10:16:52','2023-09-01 10:16:52','','About Us','','inherit','closed','closed','','7074-revision-v1','','','2023-09-01 10:16:52','2023-09-01 10:16:52','',7074,'https://esigo.futuremediatrix.com/?p=7075',0,'revision','',0),(7076,1,'2023-09-01 10:16:52','2023-09-01 10:16:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br/>\n<br/>\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n<br/><br/>\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n<br/><br/>\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n<br/><br/>\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','7074-revision-v1','','','2023-09-01 10:16:52','2023-09-01 10:16:52','',7074,'https://esigo.futuremediatrix.com/?p=7076',0,'revision','',0),(7080,1,'2023-09-01 10:18:56','2023-09-01 10:18:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n<h3>\n			+</h3>\n<h2>Work Experience</h2>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n<h2  style=\"color:#18191d\">Who We Are</h2>\nThe company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\">Vision</h2>\nTo become the leading and most preferred, Ai-Powered managed service and solution provider globally\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\">Mission</h2>\n<ul>\n 	<li style=\"text-align: left;\">Serve and uplift our customer values</li>\n 	<li style=\"text-align: left;\">Enhance professionalism and intelligent services</li>\n 	<li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li>\n 	<li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li>\n</ul>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\">Values</h2>\n<ul>\n 	<li style=\"text-align: left;\">People</li>\n 	<li style=\"text-align: left;\">Passion</li>\n 	<li style=\"text-align: left;\">Respect</li>\n 	<li style=\"text-align: left;\">Integrity</li>\n 	<li style=\"text-align: left;\">Commitment</li>\n</ul>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\"></h2>\nBusinesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.\n\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n<h2  style=\"color:#18191d\">Meet the professional team\nbehind the success</h2>\n<a href=\"\" >\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n</a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"\" >\n<h2>Ralph Edwards</h2>\nWeb designer\n\n</a>\n<a href=\"\" >\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n</a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"\" >\n<h2>Ralph Edwards</h2>\nWeb designer\n\n</a>\n<a href=\"\" >\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n</a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"\" >\n<h2>Ralph Edwards</h2>\nWeb designer\n\n</a>\n<!-- Start Testimonial Section -->\n\n<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n<h2>What They’re Saying?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Peter Johnson</h3>\nWeb developer\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Max Lawrence</h3>\nDigital marketing\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-01 10:18:56','2023-09-01 10:18:56','',30,'https://esigo.futuremediatrix.com/?p=7080',0,'revision','',0),(7081,1,'2023-09-01 10:19:51','2023-09-01 10:19:51','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n<h2  style=\"color:#18191d\">Commited to Deliver Top\nQuality Services</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Cloud</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Customer Experience</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<!-- Start Testimonial Section -->\n\n<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n<h2>What They’re Saying?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Peter Johnson</h3>\nWeb developer\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Max Lawrence</h3>\nDigital marketing\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-01 10:19:51','2023-09-01 10:19:51','',32,'https://esigo.futuremediatrix.com/?p=7081',0,'revision','',0),(7082,1,'2023-09-01 10:21:32','2023-09-01 10:21:32','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n01\n<h2>Meeting</h2>\nWe provide a range of digital marketing solutions.\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n02\n<h2>Development</h2>\nWe provide a range of digital marketing solutions.\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n03\n<h2>Release</h2>\nWe provide a range of digital marketing solutions.\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n<h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n\nHave Any Question?\n<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a></h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n\nSend Email\n<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a></h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n\nAddress\n<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd\n8 Ubi Road 2, Zervex\n#06-31\nSingapore 408538</a></h2>\n<h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Submit Now</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"25\"/></p>\n\n</form>			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-01 10:21:32','2023-09-01 10:21:32','',6535,'https://esigo.futuremediatrix.com/?p=7082',0,'revision','',0),(7084,1,'2023-09-12 03:09:46','2023-09-12 03:09:46','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"128\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-12 03:09:46','2023-09-12 03:09:46','',17,'https://esigo.futuremediatrix.com/?p=7084',0,'revision','',0),(7085,1,'2023-09-12 03:09:46','2023-09-12 03:09:46','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2>This Week Only for World Premier</h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"128\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-12 03:09:46','2023-09-12 03:09:46','',17,'https://esigo.futuremediatrix.com/?p=7085',0,'revision','',0),(7086,1,'2023-09-12 03:09:46','2023-09-12 03:09:46','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"92\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-12 03:09:46','2023-09-12 03:09:46','',17,'https://esigo.futuremediatrix.com/?p=7086',0,'revision','',0),(7087,1,'2023-09-12 03:10:57','2023-09-12 03:10:57','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"92\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-12 03:10:57','2023-09-12 03:10:57','',17,'https://esigo.futuremediatrix.com/?p=7087',0,'revision','',0),(7088,1,'2023-09-12 03:10:57','2023-09-12 03:10:57','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"92\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-12 03:10:57','2023-09-12 03:10:57','',17,'https://esigo.futuremediatrix.com/?p=7088',0,'revision','',0),(7089,1,'2023-09-12 03:10:57','2023-09-12 03:10:57','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"207\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-12 03:10:57','2023-09-12 03:10:57','',17,'https://esigo.futuremediatrix.com/?p=7089',0,'revision','',0),(7090,1,'2023-09-12 03:12:48','2023-09-12 03:12:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6596772316\">+65 9677 2316</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 03:12:48','2023-09-12 03:12:48','',6626,'https://esigo.futuremediatrix.com/?p=7090',0,'revision','',0),(7091,1,'2023-09-12 03:12:48','2023-09-12 03:12:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>Have Any Question?</p>		\n			<h2><a href=\"https://wa.me/6596772316\">+65 9677 2316</a></h2>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n			<p>Send Email</p>		\n			<h2> marketing@esi-asia.com</h2>		\n		<p>ESIGO Asia Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/portfolio/\">\n											Articles\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 03:12:48','2023-09-12 03:12:48','',6626,'https://esigo.futuremediatrix.com/?p=7091',0,'revision','',0),(7092,1,'2023-09-12 03:12:49','2023-09-12 03:12:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 03:12:49','2023-09-12 03:12:49','',6626,'https://esigo.futuremediatrix.com/?p=7092',0,'revision','',0),(7093,1,'2023-09-12 03:13:24','2023-09-12 03:13:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 03:13:24','2023-09-12 03:13:24','',6626,'https://esigo.futuremediatrix.com/?p=7093',0,'revision','',0),(7094,1,'2023-09-12 03:13:24','2023-09-12 03:13:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 03:13:24','2023-09-12 03:13:24','',6626,'https://esigo.futuremediatrix.com/?p=7094',0,'revision','',0),(7095,1,'2023-09-12 03:13:24','2023-09-12 03:13:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 03:13:24','2023-09-12 03:13:24','',6626,'https://esigo.futuremediatrix.com/?p=7095',0,'revision','',0),(7096,1,'2023-09-12 03:16:21','2023-09-12 03:16:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n<h3>\n			+</h3>\n<h2>Work Experience</h2>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n<h2  style=\"color:#18191d\">Who We Are</h2>\nThe company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\">Vision</h2>\nTo become the leading and most preferred, Ai-Powered managed service and solution provider globally\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\">Mission</h2>\n<ul>\n 	<li style=\"text-align: left;\">Serve and uplift our customer values</li>\n 	<li style=\"text-align: left;\">Enhance professionalism and intelligent services</li>\n 	<li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li>\n 	<li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li>\n</ul>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\">Values</h2>\n<ul>\n 	<li style=\"text-align: left;\">People</li>\n 	<li style=\"text-align: left;\">Passion</li>\n 	<li style=\"text-align: left;\">Respect</li>\n 	<li style=\"text-align: left;\">Integrity</li>\n 	<li style=\"text-align: left;\">Commitment</li>\n</ul>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\"></h2>\nBusinesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.\n\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n<h2  style=\"color:#18191d\">Meet the professional team\nbehind the success</h2>\n<a href=\"\" >\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n</a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"\" >\n<h2>Ralph Edwards</h2>\nWeb designer\n\n</a>\n<a href=\"\" >\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n</a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"\" >\n<h2>Ralph Edwards</h2>\nWeb designer\n\n</a>\n<a href=\"\" >\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n</a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"\" >\n<h2>Ralph Edwards</h2>\nWeb designer\n\n</a>\n<!-- Start Testimonial Section -->\n\n<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n<h2>What They’re Saying?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Peter Johnson</h3>\nWeb developer\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Max Lawrence</h3>\nDigital marketing\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:16:21','2023-09-12 03:16:21','',30,'https://esigo.futuremediatrix.com/?p=7096',0,'revision','',0),(7097,1,'2023-09-12 03:16:21','2023-09-12 03:16:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n<h3>\n			+</h3>\n<h2>Work Experience</h2>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n<h2  style=\"color:#18191d\">Who We Are</h2>\nThe company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\">Vision</h2>\nTo become the leading and most preferred, Ai-Powered managed service and solution provider globally\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\">Mission</h2>\n<ul>\n 	<li style=\"text-align: left;\">Serve and uplift our customer values</li>\n 	<li style=\"text-align: left;\">Enhance professionalism and intelligent services</li>\n 	<li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li>\n 	<li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li>\n</ul>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\">Values</h2>\n<ul>\n 	<li style=\"text-align: left;\">People</li>\n 	<li style=\"text-align: left;\">Passion</li>\n 	<li style=\"text-align: left;\">Respect</li>\n 	<li style=\"text-align: left;\">Integrity</li>\n 	<li style=\"text-align: left;\">Commitment</li>\n</ul>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n<h2  style=\"color:#18191d\"></h2>\nBusinesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.\n\nLeveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.\n\nMigration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).\n\nAs organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!\n\nHaving been operating in these countries and cities Singapore, Vietnam, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://bizmax.laralink.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n<h2  style=\"color:#18191d\">Meet the professional team\nbehind the success</h2>\n<a href=\"\" >\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n</a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"\" >\n<h2>Ralph Edwards</h2>\nWeb designer\n\n</a>\n<a href=\"\" >\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n</a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"\" >\n<h2>Ralph Edwards</h2>\nWeb designer\n\n</a>\n<a href=\"\" >\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n</a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"#\"></a>\n<a href=\"\" >\n<h2>Ralph Edwards</h2>\nWeb designer\n\n</a>\n<!-- Start Testimonial Section -->\n\n<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n<h2>What They’re Saying?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Peter Johnson</h3>\nWeb developer\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Max Lawrence</h3>\nDigital marketing\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:16:21','2023-09-12 03:16:21','',30,'https://esigo.futuremediatrix.com/?p=7097',0,'revision','',0),(7098,1,'2023-09-12 03:16:21','2023-09-12 03:16:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:16:21','2023-09-12 03:16:21','',30,'https://esigo.futuremediatrix.com/?p=7098',0,'revision','',0),(7099,1,'2023-09-12 03:18:06','2023-09-12 03:18:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 03:18:06','2023-09-12 03:18:06','',6626,'https://esigo.futuremediatrix.com/?p=7099',0,'revision','',0),(7100,1,'2023-09-12 03:18:06','2023-09-12 03:18:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-1024x424-putih-qbm5utbh6brw3orqu1f8azt72n1nhyc9eacmyt35je.png\" title=\"ESi-Go-1024&#215;424 putih\" alt=\"ESi-Go-1024x424 putih\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 03:18:06','2023-09-12 03:18:06','',6626,'https://esigo.futuremediatrix.com/?p=7100',0,'revision','',0),(7101,1,'2023-09-12 03:18:07','2023-09-12 03:18:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 03:18:07','2023-09-12 03:18:07','',6626,'https://esigo.futuremediatrix.com/?p=7101',0,'revision','',0),(7104,1,'2023-09-12 03:41:21','2023-09-12 03:41:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:41:21','2023-09-12 03:41:21','',30,'https://esigo.futuremediatrix.com/?p=7104',0,'revision','',0),(7105,1,'2023-09-12 03:41:21','2023-09-12 03:41:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:41:21','2023-09-12 03:41:21','',30,'https://esigo.futuremediatrix.com/?p=7105',0,'revision','',0),(7106,1,'2023-09-12 03:41:21','2023-09-12 03:41:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_bg.jpeg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:41:21','2023-09-12 03:41:21','',30,'https://esigo.futuremediatrix.com/?p=7106',0,'revision','',0),(7107,1,'2023-09-12 03:43:25','2023-09-12 03:43:25','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_bg.jpeg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:43:25','2023-09-12 03:43:25','',30,'https://esigo.futuremediatrix.com/?p=7107',0,'revision','',0),(7108,1,'2023-09-12 03:43:25','2023-09-12 03:43:25','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_bg.jpeg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:43:25','2023-09-12 03:43:25','',30,'https://esigo.futuremediatrix.com/?p=7108',0,'revision','',0),(7109,1,'2023-09-12 03:43:26','2023-09-12 03:43:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:43:26','2023-09-12 03:43:26','',30,'https://esigo.futuremediatrix.com/?p=7109',0,'revision','',0),(7110,1,'2023-09-12 03:47:26','2023-09-12 03:47:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:47:26','2023-09-12 03:47:26','',30,'https://esigo.futuremediatrix.com/?p=7110',0,'revision','',0),(7111,1,'2023-09-12 03:47:26','2023-09-12 03:47:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:47:26','2023-09-12 03:47:26','',30,'https://esigo.futuremediatrix.com/?p=7111',0,'revision','',0),(7112,1,'2023-09-12 03:47:26','2023-09-12 03:47:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"94\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:47:26','2023-09-12 03:47:26','',30,'https://esigo.futuremediatrix.com/?p=7112',0,'revision','',0),(7113,1,'2023-09-12 03:50:07','2023-09-12 03:50:07','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n01\n<h2>Meeting</h2>\nWe provide a range of digital marketing solutions.\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n02\n<h2>Development</h2>\nWe provide a range of digital marketing solutions.\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n03\n<h2>Release</h2>\nWe provide a range of digital marketing solutions.\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n<h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n\nHave Any Question?\n<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a></h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n\nSend Email\n<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a></h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n\nAddress\n<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd\n8 Ubi Road 2, Zervex\n#06-31\nSingapore 408538</a></h2>\n<h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Submit Now</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"25\"/></p>\n\n</form>			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-12 03:50:07','2023-09-12 03:50:07','',6535,'https://esigo.futuremediatrix.com/?p=7113',0,'revision','',0),(7114,1,'2023-09-12 03:50:07','2023-09-12 03:50:07','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n01\n<h2>Meeting</h2>\nWe provide a range of digital marketing solutions.\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n02\n<h2>Development</h2>\nWe provide a range of digital marketing solutions.\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\">\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n03\n<h2>Release</h2>\nWe provide a range of digital marketing solutions.\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n<h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n\nHave Any Question?\n<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a></h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n\nSend Email\n<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a></h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n\nAddress\n<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd\n8 Ubi Road 2, Zervex\n#06-31\nSingapore 408538</a></h2>\n<h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Submit Now</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"25\"/></p>\n\n</form>			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-12 03:50:07','2023-09-12 03:50:07','',6535,'https://esigo.futuremediatrix.com/?p=7114',0,'revision','',0),(7115,1,'2023-09-12 03:50:07','2023-09-12 03:50:07','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"241\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-12 03:50:07','2023-09-12 03:50:07','',6535,'https://esigo.futuremediatrix.com/?p=7115',0,'revision','',0),(7116,1,'2023-09-12 03:51:38','2023-09-12 03:51:38','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"241\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-12 03:51:38','2023-09-12 03:51:38','',6535,'https://esigo.futuremediatrix.com/?p=7116',0,'revision','',0),(7117,1,'2023-09-12 03:51:38','2023-09-12 03:51:38','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"241\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-12 03:51:38','2023-09-12 03:51:38','',6535,'https://esigo.futuremediatrix.com/?p=7117',0,'revision','',0),(7118,1,'2023-09-12 03:51:38','2023-09-12 03:51:38','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"29\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-12 03:51:38','2023-09-12 03:51:38','',6535,'https://esigo.futuremediatrix.com/?p=7118',0,'revision','',0),(7119,1,'2023-09-12 03:53:22','2023-09-12 03:53:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"94\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:53:22','2023-09-12 03:53:22','',30,'https://esigo.futuremediatrix.com/?p=7119',0,'revision','',0),(7120,1,'2023-09-12 03:53:22','2023-09-12 03:53:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"94\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:53:22','2023-09-12 03:53:22','',30,'https://esigo.futuremediatrix.com/?p=7120',0,'revision','',0),(7121,1,'2023-09-12 03:53:22','2023-09-12 03:53:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"60\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:53:22','2023-09-12 03:53:22','',30,'https://esigo.futuremediatrix.com/?p=7121',0,'revision','',0),(7122,1,'2023-09-12 03:55:27','2023-09-12 03:55:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"60\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:55:27','2023-09-12 03:55:27','',30,'https://esigo.futuremediatrix.com/?p=7122',0,'revision','',0),(7123,1,'2023-09-12 03:55:27','2023-09-12 03:55:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"60\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:55:27','2023-09-12 03:55:27','',30,'https://esigo.futuremediatrix.com/?p=7123',0,'revision','',0),(7124,1,'2023-09-12 03:55:27','2023-09-12 03:55:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"148\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 03:55:27','2023-09-12 03:55:27','',30,'https://esigo.futuremediatrix.com/?p=7124',0,'revision','',0),(7127,1,'2023-09-12 04:04:51','2023-09-12 04:04:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"148\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:04:51','2023-09-12 04:04:51','',30,'https://esigo.futuremediatrix.com/?p=7127',0,'revision','',0),(7128,1,'2023-09-12 04:04:51','2023-09-12 04:04:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"148\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:04:51','2023-09-12 04:04:51','',30,'https://esigo.futuremediatrix.com/?p=7128',0,'revision','',0),(7129,1,'2023-09-12 04:04:51','2023-09-12 04:04:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"79\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:04:51','2023-09-12 04:04:51','',30,'https://esigo.futuremediatrix.com/?p=7129',0,'revision','',0),(7130,1,'2023-09-12 04:05:24','2023-09-12 04:05:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"79\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:05:24','2023-09-12 04:05:24','',30,'https://esigo.futuremediatrix.com/?p=7130',0,'revision','',0),(7131,1,'2023-09-12 04:05:24','2023-09-12 04:05:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"79\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:05:24','2023-09-12 04:05:24','',30,'https://esigo.futuremediatrix.com/?p=7131',0,'revision','',0);
INSERT INTO `wpsl_posts` VALUES (7132,1,'2023-09-12 04:05:24','2023-09-12 04:05:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"26\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:05:24','2023-09-12 04:05:24','',30,'https://esigo.futuremediatrix.com/?p=7132',0,'revision','',0),(7133,1,'2023-09-12 04:07:24','2023-09-12 04:07:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"26\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:07:24','2023-09-12 04:07:24','',30,'https://esigo.futuremediatrix.com/?p=7133',0,'revision','',0),(7134,1,'2023-09-12 04:07:24','2023-09-12 04:07:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"26\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:07:24','2023-09-12 04:07:24','',30,'https://esigo.futuremediatrix.com/?p=7134',0,'revision','',0),(7135,1,'2023-09-12 04:07:24','2023-09-12 04:07:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"78\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:07:24','2023-09-12 04:07:24','',30,'https://esigo.futuremediatrix.com/?p=7135',0,'revision','',0),(7136,1,'2023-09-12 04:10:18','2023-09-12 04:10:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"78\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:10:18','2023-09-12 04:10:18','',30,'https://esigo.futuremediatrix.com/?p=7136',0,'revision','',0),(7137,1,'2023-09-12 04:10:18','2023-09-12 04:10:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"78\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:10:18','2023-09-12 04:10:18','',30,'https://esigo.futuremediatrix.com/?p=7137',0,'revision','',0),(7138,1,'2023-09-12 04:10:18','2023-09-12 04:10:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"241\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:10:18','2023-09-12 04:10:18','',30,'https://esigo.futuremediatrix.com/?p=7138',0,'revision','',0),(7139,1,'2023-09-12 04:15:02','2023-09-12 04:15:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:15:02','2023-09-12 04:15:02','',6626,'https://esigo.futuremediatrix.com/?p=7139',0,'revision','',0),(7140,1,'2023-09-12 04:15:02','2023-09-12 04:15:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:15:02','2023-09-12 04:15:02','',6626,'https://esigo.futuremediatrix.com/?p=7140',0,'revision','',0),(7141,1,'2023-09-12 04:15:02','2023-09-12 04:15:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:15:02','2023-09-12 04:15:02','',6626,'https://esigo.futuremediatrix.com/?p=7141',0,'revision','',0),(7142,1,'2023-09-12 04:18:29','2023-09-12 04:18:29','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:18:29','2023-09-12 04:18:29','',6626,'https://esigo.futuremediatrix.com/?p=7142',0,'revision','',0),(7143,1,'2023-09-12 04:18:29','2023-09-12 04:18:29','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:18:29','2023-09-12 04:18:29','',6626,'https://esigo.futuremediatrix.com/?p=7143',0,'revision','',0),(7144,1,'2023-09-12 04:18:29','2023-09-12 04:18:29','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:18:29','2023-09-12 04:18:29','',6626,'https://esigo.futuremediatrix.com/?p=7144',0,'revision','',0),(7145,1,'2023-09-12 04:19:39','2023-09-12 04:19:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:19:39','2023-09-12 04:19:39','',6626,'https://esigo.futuremediatrix.com/?p=7145',0,'revision','',0),(7146,1,'2023-09-12 04:19:39','2023-09-12 04:19:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">Esigo.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:19:39','2023-09-12 04:19:39','',6626,'https://esigo.futuremediatrix.com/?p=7146',0,'revision','',0),(7147,1,'2023-09-12 04:19:39','2023-09-12 04:19:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:19:39','2023-09-12 04:19:39','',6626,'https://esigo.futuremediatrix.com/?p=7147',0,'revision','',0),(7150,1,'2023-09-12 04:28:36','2023-09-12 04:28:36','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-12 04:28:36','2023-09-12 04:28:36','',6791,'https://esigo.futuremediatrix.com/?p=7150',0,'revision','',0),(7151,1,'2023-09-12 04:28:40','2023-09-12 04:28:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:28:40','2023-09-12 04:28:40','',6626,'https://esigo.futuremediatrix.com/?p=7151',0,'revision','',0),(7152,1,'2023-09-12 04:28:40','2023-09-12 04:28:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:28:40','2023-09-12 04:28:40','',6626,'https://esigo.futuremediatrix.com/?p=7152',0,'revision','',0),(7153,1,'2023-09-12 04:28:41','2023-09-12 04:28:41','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-12 04:28:41','2023-09-12 04:28:41','',6626,'https://esigo.futuremediatrix.com/?p=7153',0,'revision','',0),(7154,1,'2023-09-12 04:32:16','2023-09-12 04:32:16','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"207\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-12 04:32:16','2023-09-12 04:32:16','',17,'https://esigo.futuremediatrix.com/?p=7154',0,'revision','',0),(7155,1,'2023-09-12 04:32:16','2023-09-12 04:32:16','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"207\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Find Out Latest News  <br> and Articles</h2>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">Overcoming the most common cloud migration challenges</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/overcoming-the-most-common-cloud-migration-challenges/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>\n							<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							</a>\n						<ul>\n							<li>\n								 By:  \n								<a href=\"\">admin</a>\n							</li>\n							<li>\n								 August 28, 2023\n							</li>\n							<li>\n								<a href=\"#\">0 comments</a>\n							</li>\n						</ul>\n						<h2><a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">Managed services now top partner priority in ASEAN</a></h2>\n						<a href=\"https://esigo.futuremediatrix.com/2023/08/28/managed-services-now-top-partner-priority-in-asean/\">\n							Read More\n								<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M11.9999 0.224976C6.52011 0.224976 1.63131 4.16368 0.485006 9.52707C-0.0876941 12.207 0.298106 15.0567 1.57581 17.4816C2.80551 19.8153 4.82151 21.7014 7.23351 22.7703C9.74241 23.8824 12.6227 24.0762 15.2597 23.3178C17.8037 22.5864 20.0594 20.9811 21.5951 18.8262C24.806 14.3211 24.3767 7.99288 20.5991 3.95608C18.3851 1.59028 15.2405 0.224976 11.9999 0.224976ZM17.6486 12.6291L14.4386 15.9165C13.6259 16.749 12.3413 15.4878 13.1507 14.6592L14.7704 13.0005H7.09461C6.54951 13.0005 6.09471 12.5454 6.09471 12.0006C6.09471 11.4558 6.54981 11.0007 7.09461 11.0007H14.732L13.0802 9.34918C12.2594 8.52838 13.532 7.25548 14.3528 8.07628L17.6411 11.3643C17.9897 11.7126 17.993 12.2766 17.6486 12.6291Z\" fill=\"currentColor\"/>\n								</svg>  \n						</a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-12 04:32:16','2023-09-12 04:32:16','',17,'https://esigo.futuremediatrix.com/?p=7155',0,'revision','',0),(7156,1,'2023-09-12 04:32:16','2023-09-12 04:32:16','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"175\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-12 04:32:16','2023-09-12 04:32:16','',17,'https://esigo.futuremediatrix.com/?p=7156',0,'revision','',0),(7157,1,'2023-09-12 04:34:17','2023-09-12 04:34:17','','Overcoming the most common cloud migration challenges','The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them','inherit','closed','closed','','6923-revision-v1','','','2023-09-12 04:34:17','2023-09-12 04:34:17','',6923,'https://esigo.futuremediatrix.com/?p=7157',0,'revision','',0),(7158,1,'2023-09-12 04:35:19','2023-09-12 04:35:19','<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n					<a>\n						Read More					</a>','slider article 1','','inherit','closed','closed','','6838-revision-v1','','','2023-09-12 04:35:19','2023-09-12 04:35:19','',6838,'https://esigo.futuremediatrix.com/?p=7158',0,'revision','',0),(7159,1,'2023-09-12 04:35:19','2023-09-12 04:35:19','<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n					<a>\n						Read More					</a>','slider article 1','','inherit','closed','closed','','6838-revision-v1','','','2023-09-12 04:35:19','2023-09-12 04:35:19','',6838,'https://esigo.futuremediatrix.com/?p=7159',0,'revision','',0),(7160,1,'2023-09-12 04:37:39','2023-09-12 04:37:39','','As ASEAN embraces managed services, expect channel M&amp;A to rise','Partners must decide whether to evolve or exit as market transition begins.','inherit','closed','closed','','6883-revision-v1','','','2023-09-12 04:37:39','2023-09-12 04:37:39','',6883,'https://esigo.futuremediatrix.com/?p=7160',0,'revision','',0),(7161,1,'2023-09-12 04:37:39','2023-09-12 04:37:39','','As ASEAN embraces managed services, expect channel M&amp;A to rise','Partners must decide whether to evolve or exit as market transition begins.','inherit','closed','closed','','6883-revision-v1','','','2023-09-12 04:37:39','2023-09-12 04:37:39','',6883,'https://esigo.futuremediatrix.com/?p=7161',0,'revision','',0),(7162,1,'2023-09-12 04:37:39','2023-09-12 04:37:39','<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.</p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).</p>','As ASEAN embraces managed services, expect channel M&amp;A to rise','Partners must decide whether to evolve or exit as market transition begins.','inherit','closed','closed','','6883-revision-v1','','','2023-09-12 04:37:39','2023-09-12 04:37:39','',6883,'https://esigo.futuremediatrix.com/?p=7162',0,'revision','',0),(7163,1,'2023-09-12 04:42:46','2023-09-12 04:42:46','<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.</p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).</p>','As ASEAN embraces managed services, expect channel M&amp;A to rise','Partners must decide whether to evolve or exit as market transition begins.','inherit','closed','closed','','6883-revision-v1','','','2023-09-12 04:42:46','2023-09-12 04:42:46','',6883,'https://esigo.futuremediatrix.com/?p=7163',0,'revision','',0),(7164,1,'2023-09-12 04:42:46','2023-09-12 04:42:46','<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.</p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).</p>','As ASEAN embraces managed services, expect channel M&amp;A to rise','Partners must decide whether to evolve or exit as market transition begins.','inherit','closed','closed','','6883-revision-v1','','','2023-09-12 04:42:46','2023-09-12 04:42:46','',6883,'https://esigo.futuremediatrix.com/?p=7164',0,'revision','',0),(7165,1,'2023-09-12 04:42:47','2023-09-12 04:42:47','<p>As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.</p><p>Now in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).</p>		\n			<a href=\"https://www.channelasia.tech/article/671033/asean-embraces-managed-services-expect-channel-m-rise/%20\" target=\"_blank\" rel=\"noopener\">\n						Read More\n					</a>','As ASEAN embraces managed services, expect channel M&amp;A to rise','Partners must decide whether to evolve or exit as market transition begins.','inherit','closed','closed','','6883-revision-v1','','','2023-09-12 04:42:47','2023-09-12 04:42:47','',6883,'https://esigo.futuremediatrix.com/?p=7165',0,'revision','',0),(7166,1,'2023-09-12 04:44:44','2023-09-12 04:44:44','','Managed services now top partner priority in ASEAN','EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- ','inherit','closed','closed','','6911-revision-v1','','','2023-09-12 04:44:44','2023-09-12 04:44:44','',6911,'https://esigo.futuremediatrix.com/?p=7166',0,'revision','',0),(7167,1,'2023-09-12 04:44:44','2023-09-12 04:44:44','','Managed services now top partner priority in ASEAN','EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- ','inherit','closed','closed','','6911-revision-v1','','','2023-09-12 04:44:44','2023-09-12 04:44:44','',6911,'https://esigo.futuremediatrix.com/?p=7167',0,'revision','',0),(7168,1,'2023-09-12 04:44:44','2023-09-12 04:44:44','<p>Building out managed services capabilities in response to evolving customer buying patterns ranks as a leading priority for channel partners across Southeast Asia, as the ecosystem embraces subscription-based selling.</p><p>According to EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- growing annuity revenue currently stands tall as the no.1 strategic objective for value-added resellers, system integrators and solution providers in the region.</p>		\n			<a href=\"https://www.channelasia.tech/article/692441/managed-services-now-top-partner-priority-asean/%20\" target=\"_blank\" rel=\"noopener\">\n						Read More\n					</a>','Managed services now top partner priority in ASEAN','EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- ','inherit','closed','closed','','6911-revision-v1','','','2023-09-12 04:44:44','2023-09-12 04:44:44','',6911,'https://esigo.futuremediatrix.com/?p=7168',0,'revision','',0),(7169,1,'2023-09-12 04:46:23','2023-09-12 04:46:23','','How the pandemic has changed ASEAN managed services buying habits (Channel Asia)','ASEAN enterprises’ managed services buying criteria','inherit','closed','closed','','6917-revision-v1','','','2023-09-12 04:46:23','2023-09-12 04:46:23','',6917,'https://esigo.futuremediatrix.com/?p=7169',0,'revision','',0),(7170,1,'2023-09-12 04:46:23','2023-09-12 04:46:23','','How the pandemic has changed ASEAN managed services buying habits (Channel Asia)','ASEAN enterprises’ managed services buying criteria','inherit','closed','closed','','6917-revision-v1','','','2023-09-12 04:46:23','2023-09-12 04:46:23','',6917,'https://esigo.futuremediatrix.com/?p=7170',0,'revision','',0),(7171,1,'2023-09-12 04:46:23','2023-09-12 04:46:23','<p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19, with skills shortages and the ease of migration, along with organisational-driven initiatives now the top three drivers for organisations considering managed ICT services.</p><p>“The COVID-19 pandemic not only has accelerated managed service adoption in ASEAN, including the SMB [small- to medium-sized business] segment, but also changed enterprises’ buying behavior while considering new ICT solutions,” said Alfie Amir, principal analyst at industry research firm GlobalData. “Scalability, cost-savings and product lifecycle are no longer the top drivers for managed services.”</p>		\n			<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/%20\" target=\"_blank\" rel=\"noopener\">\n						Read More\n					</a>','How the pandemic has changed ASEAN managed services buying habits (Channel Asia)','ASEAN enterprises’ managed services buying criteria','inherit','closed','closed','','6917-revision-v1','','','2023-09-12 04:46:23','2023-09-12 04:46:23','',6917,'https://esigo.futuremediatrix.com/?p=7171',0,'revision','',0),(7172,1,'2023-09-12 04:49:03','2023-09-12 04:49:03','','Overcoming the most common cloud migration challenges','The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them','inherit','closed','closed','','6923-revision-v1','','','2023-09-12 04:49:03','2023-09-12 04:49:03','',6923,'https://esigo.futuremediatrix.com/?p=7172',0,'revision','',0),(7173,1,'2023-09-12 04:49:03','2023-09-12 04:49:03','','Overcoming the most common cloud migration challenges','The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them','inherit','closed','closed','','6923-revision-v1','','','2023-09-12 04:49:03','2023-09-12 04:49:03','',6923,'https://esigo.futuremediatrix.com/?p=7173',0,'revision','',0),(7174,1,'2023-09-12 04:49:03','2023-09-12 04:49:03','<p>Operating in the cloud has many benefits for organizations, including:</p><p>- Increased efficiency in operations and management<br />- Better support and access for a distributed workforce<br />- Integration with the IT tech stack<br />- Reduced costs</p><p>However, even as many businesses rush to adopt cloud computing processes, it is not an easy initiative. Cloud migration introduces its own challenges. Whether you are looking to take advantage of cloud infrastructure, platforms, or software services, use these solutions to help you navigate a successful cloud migration.</p>		\n			<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\" target=\"_blank\" rel=\"noopener\">\n						Read More\n					</a>','Overcoming the most common cloud migration challenges','The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them','inherit','closed','closed','','6923-revision-v1','','','2023-09-12 04:49:03','2023-09-12 04:49:03','',6923,'https://esigo.futuremediatrix.com/?p=7174',0,'revision','',0),(7175,1,'2023-09-12 04:50:32','2023-09-12 04:50:32','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"241\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:50:32','2023-09-12 04:50:32','',30,'https://esigo.futuremediatrix.com/?p=7175',0,'revision','',0),(7176,1,'2023-09-12 04:50:32','2023-09-12 04:50:32','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.<br /><br />Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.<br /><br /><br />Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).<br /><br /><br />As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!<br /><br /><br />Having been operating in these countries and cities Singapore, Ho Chi Minh, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"241\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:50:32','2023-09-12 04:50:32','',30,'https://esigo.futuremediatrix.com/?p=7176',0,'revision','',0),(7177,1,'2023-09-12 04:50:32','2023-09-12 04:50:32','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"144\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-12 04:50:32','2023-09-12 04:50:32','',30,'https://esigo.futuremediatrix.com/?p=7177',0,'revision','',0),(7178,1,'2023-09-18 04:40:47','2023-09-18 04:40:47','<p>This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.</p>\n<h4>PERSONAL DATA</h4>\n<ol>\n<li>As used in this Policy:</li>\n</ol>\n<p>“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and</p>\n<p>“personal data” means data, whether true or not, about a customer who can be identified:</p>\n<ul>\n<li>from that data; or (b) from that data and other information to which we have or are likely to have</li>\n</ul>\n<ol start=\"2\">\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li>\n</ol>\n<ol start=\"3\">\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li>\n</ol>\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h4>\n<ol start=\"4\">\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li>\n</ol>\n<ol start=\"5\">\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the</li>\n</ol>\n<ol start=\"6\">\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li>\n</ol>\n<ol start=\"7\">\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li>\n</ol>\n<h4>WITHDRAWING YOUR CONSENT</h4>\n<ol start=\"8\">\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li>\n</ol>\n<ol start=\"9\">\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li>\n</ol>\n<ol start=\"10\">\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</li>\n</ol>\n<ol start=\"11\">\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li>\n</ol>\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA</h4>\n<ol start=\"12\">\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li>\n</ol>\n<ol start=\"13\">\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li>\n</ol>\n<ol start=\"14\">\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li>\n</ol>\n<h4>PROTECTION OF PERSONAL DATA</h4>\n<ol start=\"15\">\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li>\n</ol>\n<ol start=\"16\">\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li>\n</ol>\n<h4>ACCURACY OF PERSONAL DATA</h4>\n<ol start=\"17\">\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li>\n</ol>\n<h4>RETENTION OF PERSONAL DATA</h4>\n<ol start=\"18\">\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li>\n</ol>\n<ol start=\"19\">\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li>\n</ol>\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h4>\n<ol start=\"20\">\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li>\n</ol>\n<h4>DATA PROTECTION OFFICER</h4>\n<ol start=\"21\">\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li>\n</ol>\n<p>Data Protection Officer</p>\n<p>ESIGO (Asia) Pte Ltd</p>\n<p>Tel: +65 6817 1978</p>\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY</h4>\n<ol start=\"22\">\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li>\n</ol>\n<ol start=\"23\">\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li>\n</ol>\n<p>Effective date: 15 September 2023</p>\n<p>Last updated: 15 September 2023</p>','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2023-11-17 16:09:26','2023-11-17 08:09:26','',0,'https://esigo.futuremediatrix.com/?page_id=7178',0,'page','',0),(7179,1,'2023-09-18 04:36:26','2023-09-18 04:36:26','','Privacy Policy','','inherit','closed','closed','','7178-revision-v1','','','2023-09-18 04:36:26','2023-09-18 04:36:26','',7178,'https://esigo.futuremediatrix.com/?p=7179',0,'revision','',0),(7180,1,'2023-09-18 04:40:09','2023-09-18 04:40:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"144\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 04:40:09','2023-09-18 04:40:09','',30,'https://esigo.futuremediatrix.com/?p=7180',0,'revision','',0),(7181,1,'2023-09-18 04:40:09','2023-09-18 04:40:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"144\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 04:40:09','2023-09-18 04:40:09','',30,'https://esigo.futuremediatrix.com/?p=7181',0,'revision','',0),(7182,1,'2023-09-18 04:40:09','2023-09-18 04:40:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"211\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 04:40:09','2023-09-18 04:40:09','',30,'https://esigo.futuremediatrix.com/?p=7182',0,'revision','',0),(7183,1,'2023-09-18 04:45:36','2023-09-18 04:45:36','<p>This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.</p><p> </p><h2>PERSONAL DATA</h2><p> </p><ol><li>As used in this Policy:</li></ol><p> </p><p>“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and</p><p> </p><p>“personal data” means data, whether true or not, about a customer who can be identified:</p><ul><li>from that data; or (b) from that data and other information to which we have or are likely to have</li></ul><p> </p><ol start=\"2\"><li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li></ol><p> </p><ol start=\"3\"><li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li></ol><p> </p><h2>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h2><p> </p><ol start=\"4\"><li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li></ol><p> </p><ol start=\"5\"><li>We may collect and use your personal data for any or all of the following purposes:</li></ol><p> </p><ul><li>performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;</li></ul><p> </p><ul><li>verifying your identity;</li></ul><p> </p><ul><li>responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;</li></ul><p> </p><p> </p><p> </p><p> </p><ul><li>managing your relationship with us;</li></ul><p> </p><ul><li>processing payment or credit transactions;</li></ul><p> </p><ul><li>sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;</li></ul><p> </p><ul><li>complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;</li></ul><p> </p><ul><li>any other purposes for which you have provided the information;</li></ul><p> </p><ul><li>transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and</li></ul><p> </p><ul><li>any other incidental business purposes related to or in connection with the</li></ul><p> </p><ol start=\"6\"><li>We may disclose your personal data:</li></ol><p> </p><ul><li>where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or</li></ul><p> </p><ul><li>to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li></ul><p> </p><ol start=\"7\"><li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li></ol><p> </p><h2>WITHDRAWING YOUR CONSENT</h2><p> </p><ol start=\"8\"><li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li></ol><p> </p><ol start=\"9\"><li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li></ol><p> </p><ol start=\"10\"><li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods</li></ol><p> </p><p> </p><p> </p><p>or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</p><p> </p><ol start=\"11\"><li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li></ol><p> </p><h2>ACCESS TO AND CORRECTION OF PERSONAL DATA</h2><p> </p><ol start=\"12\"><li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li></ol><p> </p><ol start=\"13\"><li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li></ol><p> </p><ol start=\"14\"><li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li></ol><p> </p><h2>PROTECTION OF PERSONAL DATA</h2><p> </p><ol start=\"15\"><li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li></ol><p> </p><ol start=\"16\"><li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li></ol><p> </p><h2>ACCURACY OF PERSONAL DATA</h2><p> </p><ol start=\"17\"><li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li></ol><p> </p><h2>RETENTION OF PERSONAL DATA</h2><p> </p><ol start=\"18\"><li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li></ol><p> </p><p> </p><p> </p><p> </p><ol start=\"19\"><li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li></ol><p> </p><h2>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h2><p> </p><ol start=\"20\"><li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li></ol><p> </p><h2>DATA PROTECTION OFFICER</h2><p> </p><ol start=\"21\"><li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li></ol><p> </p><p>Data Protection Officer</p><p>ESIGO (Asia) Pte Ltd</p><p>Tel: +65 6817 1978</p><p> </p><h2>EFFECT OF POLICY AND CHANGES TO POLICY</h2><p> </p><ol start=\"22\"><li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li></ol><p> </p><ol start=\"23\"><li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li></ol><p> </p><p>Effective date: 15 September 2023</p><p>Last updated: 15 September 2023</p>','Privacy Policy','','inherit','closed','closed','','7178-revision-v1','','','2023-09-18 04:45:36','2023-09-18 04:45:36','',7178,'https://esigo.futuremediatrix.com/?p=7183',0,'revision','',0),(7184,1,'2023-09-18 04:45:36','2023-09-18 04:45:36','<p>This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.</p><p> </p><h2>PERSONAL DATA</h2><p> </p><ol><li>As used in this Policy:</li></ol><p> </p><p>“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and</p><p> </p><p>“personal data” means data, whether true or not, about a customer who can be identified:</p><ul><li>from that data; or (b) from that data and other information to which we have or are likely to have</li></ul><p> </p><ol start=\"2\"><li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li></ol><p> </p><ol start=\"3\"><li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li></ol><p> </p><h2>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h2><p> </p><ol start=\"4\"><li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li></ol><p> </p><ol start=\"5\"><li>We may collect and use your personal data for any or all of the following purposes:</li></ol><p> </p><ul><li>performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;</li></ul><p> </p><ul><li>verifying your identity;</li></ul><p> </p><ul><li>responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;</li></ul><p> </p><p> </p><p> </p><p> </p><ul><li>managing your relationship with us;</li></ul><p> </p><ul><li>processing payment or credit transactions;</li></ul><p> </p><ul><li>sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;</li></ul><p> </p><ul><li>complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;</li></ul><p> </p><ul><li>any other purposes for which you have provided the information;</li></ul><p> </p><ul><li>transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and</li></ul><p> </p><ul><li>any other incidental business purposes related to or in connection with the</li></ul><p> </p><ol start=\"6\"><li>We may disclose your personal data:</li></ol><p> </p><ul><li>where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or</li></ul><p> </p><ul><li>to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li></ul><p> </p><ol start=\"7\"><li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li></ol><p> </p><h2>WITHDRAWING YOUR CONSENT</h2><p> </p><ol start=\"8\"><li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li></ol><p> </p><ol start=\"9\"><li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li></ol><p> </p><ol start=\"10\"><li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods</li></ol><p> </p><p> </p><p> </p><p>or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</p><p> </p><ol start=\"11\"><li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li></ol><p> </p><h2>ACCESS TO AND CORRECTION OF PERSONAL DATA</h2><p> </p><ol start=\"12\"><li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li></ol><p> </p><ol start=\"13\"><li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li></ol><p> </p><ol start=\"14\"><li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li></ol><p> </p><h2>PROTECTION OF PERSONAL DATA</h2><p> </p><ol start=\"15\"><li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li></ol><p> </p><ol start=\"16\"><li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li></ol><p> </p><h2>ACCURACY OF PERSONAL DATA</h2><p> </p><ol start=\"17\"><li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li></ol><p> </p><h2>RETENTION OF PERSONAL DATA</h2><p> </p><ol start=\"18\"><li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li></ol><p> </p><p> </p><p> </p><p> </p><ol start=\"19\"><li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li></ol><p> </p><h2>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h2><p> </p><ol start=\"20\"><li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li></ol><p> </p><h2>DATA PROTECTION OFFICER</h2><p> </p><ol start=\"21\"><li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li></ol><p> </p><p>Data Protection Officer</p><p>ESIGO (Asia) Pte Ltd</p><p>Tel: +65 6817 1978</p><p> </p><h2>EFFECT OF POLICY AND CHANGES TO POLICY</h2><p> </p><ol start=\"22\"><li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li></ol><p> </p><ol start=\"23\"><li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li></ol><p> </p><p>Effective date: 15 September 2023</p><p>Last updated: 15 September 2023</p>','Privacy Policy','','inherit','closed','closed','','7178-revision-v1','','','2023-09-18 04:45:36','2023-09-18 04:45:36','',7178,'https://esigo.futuremediatrix.com/?p=7184',0,'revision','',0),(7185,1,'2023-09-18 04:45:36','2023-09-18 04:45:36','<p>This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.</p><h4>PERSONAL DATA</h4><ol><li>As used in this Policy:</li></ol><p>“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and</p><p>“personal data” means data, whether true or not, about a customer who can be identified:</p><ul><li>from that data; or (b) from that data and other information to which we have or are likely to have</li></ul><ol start=\"2\"><li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li></ol><ol start=\"3\"><li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li></ol><h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h4><ol start=\"4\"><li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li></ol><ol start=\"5\"><li>We may collect and use your personal data for any or all of the following purposes:<br />(a) performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;<br />(b) verifying your identity;<br />(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br />(d) managing your relationship with us;<br />(e) processing payment or credit transactions;<br />(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br />(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;<br />(h) any other purposes for which you have provided the information;<br />(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br />(j) any other incidental business purposes related to or in connection with the</li></ol><ol start=\"6\"><li>We may disclose your personal data:<br />(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br />(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li></ol><ol start=\"7\"><li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li></ol><h4>WITHDRAWING YOUR CONSENT</h4><ol start=\"8\"><li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li></ol><ol start=\"9\"><li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li></ol><ol start=\"10\"><li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</li></ol><ol start=\"11\"><li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li></ol><h2>ACCESS TO AND CORRECTION OF PERSONAL DATA</h2><ol start=\"12\"><li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li></ol><ol start=\"13\"><li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li></ol><ol start=\"14\"><li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li></ol><h4>PROTECTION OF PERSONAL DATA</h4><ol start=\"15\"><li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li></ol><ol start=\"16\"><li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li></ol><h4>ACCURACY OF PERSONAL DATA</h4><ol start=\"17\"><li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li></ol><h4>RETENTION OF PERSONAL DATA</h4><ol start=\"18\"><li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li></ol><ol start=\"19\"><li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li></ol><h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h4><ol start=\"20\"><li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li></ol><h4>DATA PROTECTION OFFICER</h4><ol start=\"21\"><li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li></ol><p>Data Protection Officer</p><p>ESIGO (Asia) Pte Ltd</p><p>Tel: +65 6817 1978</p><h4>EFFECT OF POLICY AND CHANGES TO POLICY</h4><ol start=\"22\"><li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li></ol><ol start=\"23\"><li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li></ol><p>Effective date: 15 September 2023</p><p>Last updated: 15 September 2023</p>','Privacy Policy','','inherit','closed','closed','','7178-revision-v1','','','2023-09-18 04:45:36','2023-09-18 04:45:36','',7178,'https://esigo.futuremediatrix.com/?p=7185',0,'revision','',0),(7188,1,'2023-09-18 04:48:47','2023-09-18 04:48:47','This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.\n<h4>PERSONAL DATA</h4>\n<ol>\n 	<li>As used in this Policy:</li>\n</ol>\n“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and\n\n“personal data” means data, whether true or not, about a customer who can be identified:\n<ul>\n 	<li>from that data; or (b) from that data and other information to which we have or are likely to have</li>\n</ul>\n<ol start=\"2\">\n 	<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li>\n</ol>\n<ol start=\"3\">\n 	<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li>\n</ol>\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h4>\n<ol start=\"4\">\n 	<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li>\n</ol>\n<ol start=\"5\">\n 	<li>We may collect and use your personal data for any or all of the following purposes:\n(a) performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;\n(b) verifying your identity;\n(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;\n(d) managing your relationship with us;\n(e) processing payment or credit transactions;\n(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;\n(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;\n(h) any other purposes for which you have provided the information;\n(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and\n(j) any other incidental business purposes related to or in connection with the</li>\n</ol>\n<ol start=\"6\">\n 	<li>We may disclose your personal data:\n(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or\n(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li>\n</ol>\n<ol start=\"7\">\n 	<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li>\n</ol>\n<h4>WITHDRAWING YOUR CONSENT</h4>\n<ol start=\"8\">\n 	<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li>\n</ol>\n<ol start=\"9\">\n 	<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li>\n</ol>\n<ol start=\"10\">\n 	<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</li>\n</ol>\n<ol start=\"11\">\n 	<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li>\n</ol>\n<h2>ACCESS TO AND CORRECTION OF PERSONAL DATA</h2>\n<ol start=\"12\">\n 	<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li>\n</ol>\n<ol start=\"13\">\n 	<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li>\n</ol>\n<ol start=\"14\">\n 	<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li>\n</ol>\n<h4>PROTECTION OF PERSONAL DATA</h4>\n<ol start=\"15\">\n 	<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li>\n</ol>\n<ol start=\"16\">\n 	<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li>\n</ol>\n<h4>ACCURACY OF PERSONAL DATA</h4>\n<ol start=\"17\">\n 	<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li>\n</ol>\n<h4>RETENTION OF PERSONAL DATA</h4>\n<ol start=\"18\">\n 	<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li>\n</ol>\n<ol start=\"19\">\n 	<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li>\n</ol>\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h4>\n<ol start=\"20\">\n 	<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li>\n</ol>\n<h4>DATA PROTECTION OFFICER</h4>\n<ol start=\"21\">\n 	<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li>\n</ol>\nData Protection Officer\n\nESIGO (Asia) Pte Ltd\n\nTel: +65 6817 1978\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY</h4>\n<ol start=\"22\">\n 	<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li>\n</ol>\n<ol start=\"23\">\n 	<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li>\n</ol>\nEffective date: 15 September 2023\n\nLast updated: 15 September 2023','Privacy Policy','','inherit','closed','closed','','7178-revision-v1','','','2023-09-18 04:48:47','2023-09-18 04:48:47','',7178,'https://esigo.futuremediatrix.com/?p=7188',0,'revision','',0),(7189,1,'2023-09-18 04:50:18','2023-09-18 04:50:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-18 04:50:18','2023-09-18 04:50:18','',6626,'https://esigo.futuremediatrix.com/?p=7189',0,'revision','',0),(7190,1,'2023-09-18 04:50:18','2023-09-18 04:50:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://ordainit.com/wp-theme/sorex/shop/\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-18 04:50:18','2023-09-18 04:50:18','',6626,'https://esigo.futuremediatrix.com/?p=7190',0,'revision','',0),(7191,1,'2023-09-18 04:50:18','2023-09-18 04:50:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-18 04:50:18','2023-09-18 04:50:18','',6626,'https://esigo.futuremediatrix.com/?p=7191',0,'revision','',0),(7203,1,'2023-09-18 05:34:43','2023-09-18 05:34:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"211\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 05:34:43','2023-09-18 05:34:43','',30,'https://esigo.futuremediatrix.com/?p=7203',0,'revision','',0),(7204,1,'2023-09-18 05:34:43','2023-09-18 05:34:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"211\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 05:34:43','2023-09-18 05:34:43','',30,'https://esigo.futuremediatrix.com/?p=7204',0,'revision','',0),(7205,1,'2023-09-18 05:34:43','2023-09-18 05:34:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"138\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 05:34:43','2023-09-18 05:34:43','',30,'https://esigo.futuremediatrix.com/?p=7205',0,'revision','',0),(7215,1,'2023-09-18 05:41:38','2023-09-18 05:41:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"138\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 05:41:38','2023-09-18 05:41:38','',30,'https://esigo.futuremediatrix.com/?p=7215',0,'revision','',0),(7216,1,'2023-09-18 05:41:38','2023-09-18 05:41:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Accounting and Bookkeeping</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">IT Support and Consulting</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Marketing and Advertising</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://bizmax.laralink.com/service-details/\">Human Resources</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://bizmax.laralink.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#FFFFFF\">Digital agency services built specifically for your business</h4>\n			<a href=\"https://bizmax.laralink.com/contact/\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"138\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 05:41:38','2023-09-18 05:41:38','',30,'https://esigo.futuremediatrix.com/?p=7216',0,'revision','',0),(7217,1,'2023-09-18 05:41:38','2023-09-18 05:41:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"90\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 05:41:38','2023-09-18 05:41:38','',30,'https://esigo.futuremediatrix.com/?p=7217',0,'revision','',0),(7218,1,'2023-09-18 05:51:55','2023-09-18 05:51:55','<img src=\"https://www.esi-asia.com/wp-content/uploads/2023/07/A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-906x1024.png\" />','A Simple &amp; Complete Solution Brings Hybrid Parties Together One Platform To Connect','','publish','closed','closed','','a-simple-complete-solution-brings-hybrid-parties-together-one-platform-to-connect','','','2023-09-21 04:47:46','2023-09-21 04:47:46','',0,'https://esigo.futuremediatrix.com/?p=7218',0,'post','',0),(7219,1,'2023-09-18 05:49:11','2023-09-18 05:49:11','','A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868','','inherit','open','closed','','a-simple-complete-solution-brings-hybrid-parties-together-one-platform-to-connect-esi-768x868','','','2023-09-18 05:49:42','2023-09-18 05:49:42','',7218,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-768x868-1.png',0,'attachment','image/png',0),(7220,1,'2023-09-18 05:51:55','2023-09-18 05:51:55','','A Simple &amp; Complete Solution Brings Hybrid Parties Together One Platform To Connect','','inherit','closed','closed','','7218-revision-v1','','','2023-09-18 05:51:55','2023-09-18 05:51:55','',7218,'https://esigo.futuremediatrix.com/?p=7220',0,'revision','',0),(7221,1,'2023-09-18 05:52:48','2023-09-18 05:52:48','','A Simple &amp; Complete Solution Brings Hybrid Parties Together One Platform To Connect','','inherit','closed','closed','','7218-revision-v1','','','2023-09-18 05:52:48','2023-09-18 05:52:48','',7218,'https://esigo.futuremediatrix.com/?p=7221',0,'revision','',0),(7222,1,'2023-09-18 05:52:48','2023-09-18 05:52:48','','A Simple &amp; Complete Solution Brings Hybrid Parties Together One Platform To Connect','','inherit','closed','closed','','7218-revision-v1','','','2023-09-18 05:52:48','2023-09-18 05:52:48','',7218,'https://esigo.futuremediatrix.com/?p=7222',0,'revision','',0),(7223,1,'2023-09-18 05:52:48','2023-09-18 05:52:48','<p><img src=\"https://www.esi-asia.com/wp-content/uploads/2023/07/A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-906x1024.png\" /></p>','A Simple &amp; Complete Solution Brings Hybrid Parties Together One Platform To Connect','','inherit','closed','closed','','7218-revision-v1','','','2023-09-18 05:52:48','2023-09-18 05:52:48','',7218,'https://esigo.futuremediatrix.com/?p=7223',0,'revision','',0),(7225,1,'2023-09-18 06:02:46','2023-09-18 06:02:46','<img src=\"https://www.esi-asia.com/wp-content/uploads/2023/07/A-Simple-Complete-Solution-Brings-Hybrid-Parties-Together-One-Platform-To-Connect-ESi-906x1024.png\" />','A Simple &amp; Complete Solution Brings Hybrid Parties Together One Platform To Connect','','inherit','closed','closed','','7218-revision-v1','','','2023-09-18 06:02:46','2023-09-18 06:02:46','',7218,'https://esigo.futuremediatrix.com/?p=7225',0,'revision','',0),(7226,1,'2023-09-18 06:03:00','2023-09-18 06:03:00','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"90\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:03:00','2023-09-18 06:03:00','',30,'https://esigo.futuremediatrix.com/?p=7226',0,'revision','',0),(7227,1,'2023-09-18 06:03:00','2023-09-18 06:03:00','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"90\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:03:00','2023-09-18 06:03:00','',30,'https://esigo.futuremediatrix.com/?p=7227',0,'revision','',0),(7228,1,'2023-09-18 06:03:00','2023-09-18 06:03:00','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"140\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:03:00','2023-09-18 06:03:00','',30,'https://esigo.futuremediatrix.com/?p=7228',0,'revision','',0),(7229,1,'2023-09-18 06:03:54','2023-09-18 06:03:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"140\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:03:54','2023-09-18 06:03:54','',30,'https://esigo.futuremediatrix.com/?p=7229',0,'revision','',0),(7230,1,'2023-09-18 06:03:54','2023-09-18 06:03:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"140\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:03:54','2023-09-18 06:03:54','',30,'https://esigo.futuremediatrix.com/?p=7230',0,'revision','',0),(7231,1,'2023-09-18 06:03:54','2023-09-18 06:03:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"125\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:03:54','2023-09-18 06:03:54','',30,'https://esigo.futuremediatrix.com/?p=7231',0,'revision','',0),(7232,1,'2023-09-18 06:05:42','2023-09-18 06:05:42','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"125\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:05:42','2023-09-18 06:05:42','',30,'https://esigo.futuremediatrix.com/?p=7232',0,'revision','',0),(7233,1,'2023-09-18 06:05:42','2023-09-18 06:05:42','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"125\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:05:42','2023-09-18 06:05:42','',30,'https://esigo.futuremediatrix.com/?p=7233',0,'revision','',0),(7234,1,'2023-09-18 06:05:42','2023-09-18 06:05:42','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"184\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:05:42','2023-09-18 06:05:42','',30,'https://esigo.futuremediatrix.com/?p=7234',0,'revision','',0),(7235,1,'2023-09-18 06:09:22','2023-09-18 06:09:22','<img src=\"https://www.esi-asia.com/wp-content/uploads/2023/07/eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861.png\" />','Phone System Maintenance Exclusive Offer for New Customers','','publish','closed','closed','','phone-system-maintenance-exclusive-offer-for-new-customers','','','2023-09-21 04:48:22','2023-09-21 04:48:22','',0,'https://esigo.futuremediatrix.com/?p=7235',0,'post','',0),(7237,1,'2023-09-18 06:08:08','2023-09-18 06:08:08','','Phone System Maintenance Exclusive Offer for New Customers','','inherit','open','closed','','edm-phone-system-maintenance-exclusive-offer-avaya-alcatel-cicso-mitel-shortel-esi-1-768x861','','','2023-09-18 06:09:13','2023-09-18 06:09:13','',7235,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861-1.png',0,'attachment','image/png',0),(7238,1,'2023-09-18 06:09:22','2023-09-18 06:09:22','','Phone System Maintenance Exclusive Offer for New Customers','','inherit','closed','closed','','7235-revision-v1','','','2023-09-18 06:09:22','2023-09-18 06:09:22','',7235,'https://esigo.futuremediatrix.com/?p=7238',0,'revision','',0),(7239,1,'2023-09-18 06:10:03','2023-09-18 06:10:03','{{unknown}}','','','publish','closed','closed','','d74b508b15d948284279f9525e6de0fa','','','2023-09-18 06:10:03','2023-09-18 06:10:03','',0,'https://esigo.futuremediatrix.com/2023/09/18/d74b508b15d948284279f9525e6de0fa/',0,'oembed_cache','',0),(7240,1,'2023-09-18 06:10:06','2023-09-18 06:10:06','','Phone System Maintenance Exclusive Offer for New Customers','','inherit','closed','closed','','7235-revision-v1','','','2023-09-18 06:10:06','2023-09-18 06:10:06','',7235,'https://esigo.futuremediatrix.com/?p=7240',0,'revision','',0),(7241,1,'2023-09-18 06:10:06','2023-09-18 06:10:06','','Phone System Maintenance Exclusive Offer for New Customers','','inherit','closed','closed','','7235-revision-v1','','','2023-09-18 06:10:06','2023-09-18 06:10:06','',7235,'https://esigo.futuremediatrix.com/?p=7241',0,'revision','',0),(7242,1,'2023-09-18 06:10:07','2023-09-18 06:10:07','<p><img src=\"https://www.esi-asia.com/wp-content/uploads/2023/07/eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861.png\" /></p>','Phone System Maintenance Exclusive Offer for New Customers','','inherit','closed','closed','','7235-revision-v1','','','2023-09-18 06:10:07','2023-09-18 06:10:07','',7235,'https://esigo.futuremediatrix.com/?p=7242',0,'revision','',0),(7243,1,'2023-09-18 06:12:44','2023-09-18 06:12:44','<p><img src=\"https://www.esi-asia.com/wp-content/uploads/2022/08/leapxpert_sleekflow-1024x1024.png\" /></p>','Compliant Enterprise Messaging Solutions','','publish','closed','closed','','compliant-enterprise-messaging-solutions','','','2023-09-21 04:50:38','2023-09-21 04:50:38','',0,'https://esigo.futuremediatrix.com/?p=7243',0,'post','',0),(7244,1,'2023-09-18 06:11:51','2023-09-18 06:11:51','','Compliant Enterprise Messaging Solutions','','inherit','open','closed','','leapxpert_sleekflow-768x767','','','2023-09-18 06:12:00','2023-09-18 06:12:00','',7243,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/leapxpert_sleekflow-768x767-1.png',0,'attachment','image/png',0),(7245,1,'2023-09-18 06:12:44','2023-09-18 06:12:44','','Compliant Enterprise Messaging Solutions','','inherit','closed','closed','','7243-revision-v1','','','2023-09-18 06:12:44','2023-09-18 06:12:44','',7243,'https://esigo.futuremediatrix.com/?p=7245',0,'revision','',0),(7246,1,'2023-09-18 06:13:33','2023-09-18 06:13:33','','Compliant Enterprise Messaging Solutions','','inherit','closed','closed','','7243-revision-v1','','','2023-09-18 06:13:33','2023-09-18 06:13:33','',7243,'https://esigo.futuremediatrix.com/?p=7246',0,'revision','',0),(7247,1,'2023-09-18 06:13:33','2023-09-18 06:13:33','','Compliant Enterprise Messaging Solutions','','inherit','closed','closed','','7243-revision-v1','','','2023-09-18 06:13:33','2023-09-18 06:13:33','',7243,'https://esigo.futuremediatrix.com/?p=7247',0,'revision','',0),(7248,1,'2023-09-18 06:13:33','2023-09-18 06:13:33','<p><img src=\"https://www.esi-asia.com/wp-content/uploads/2022/08/leapxpert_sleekflow-1024x1024.png\" /></p>','Compliant Enterprise Messaging Solutions','','inherit','closed','closed','','7243-revision-v1','','','2023-09-18 06:13:33','2023-09-18 06:13:33','',7243,'https://esigo.futuremediatrix.com/?p=7248',0,'revision','',0),(7249,1,'2023-09-18 06:15:42','2023-09-18 06:15:42','<img src=\"https://www.esi-asia.com/wp-content/uploads/2022/06/News-and-Events-eDM-732x1024.png\" />','Stop Attacks At The Entry Point with IronScales','','publish','closed','closed','','stop-attacks-at-the-entry-point-with-ironscales','','','2023-09-21 04:44:51','2023-09-21 04:44:51','',0,'https://esigo.futuremediatrix.com/?p=7249',0,'post','',0),(7250,1,'2023-09-18 06:15:01','2023-09-18 06:15:01','','Stop Attacks At The Entry Point with IronScales','','inherit','open','closed','','news-and-events-edm-732x1024','','','2023-09-18 06:15:37','2023-09-18 06:15:37','',7249,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/News-and-Events-eDM-732x1024-1.png',0,'attachment','image/png',0),(7251,1,'2023-09-18 06:15:42','2023-09-18 06:15:42','','Stop Attacks At The Entry Point with IronScales','','inherit','closed','closed','','7249-revision-v1','','','2023-09-18 06:15:42','2023-09-18 06:15:42','',7249,'https://esigo.futuremediatrix.com/?p=7251',0,'revision','',0),(7252,1,'2023-09-18 06:16:11','2023-09-18 06:16:11','','Stop Attacks At The Entry Point with IronScales','','inherit','closed','closed','','7249-revision-v1','','','2023-09-18 06:16:11','2023-09-18 06:16:11','',7249,'https://esigo.futuremediatrix.com/?p=7252',0,'revision','',0),(7253,1,'2023-09-18 06:16:11','2023-09-18 06:16:11','','Stop Attacks At The Entry Point with IronScales','','inherit','closed','closed','','7249-revision-v1','','','2023-09-18 06:16:11','2023-09-18 06:16:11','',7249,'https://esigo.futuremediatrix.com/?p=7253',0,'revision','',0),(7254,1,'2023-09-18 06:16:11','2023-09-18 06:16:11','<p><img src=\"https://www.esi-asia.com/wp-content/uploads/2022/06/News-and-Events-eDM-732x1024.png\" /></p>','Stop Attacks At The Entry Point with IronScales','','inherit','closed','closed','','7249-revision-v1','','','2023-09-18 06:16:11','2023-09-18 06:16:11','',7249,'https://esigo.futuremediatrix.com/?p=7254',0,'revision','',0),(7255,1,'2023-09-18 06:16:14','2023-09-18 06:16:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"184\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:16:14','2023-09-18 06:16:14','',30,'https://esigo.futuremediatrix.com/?p=7255',0,'revision','',0),(7256,1,'2023-09-18 06:16:14','2023-09-18 06:16:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"184\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:16:14','2023-09-18 06:16:14','',30,'https://esigo.futuremediatrix.com/?p=7256',0,'revision','',0),(7257,1,'2023-09-18 06:16:14','2023-09-18 06:16:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"95\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:16:14','2023-09-18 06:16:14','',30,'https://esigo.futuremediatrix.com/?p=7257',0,'revision','',0),(7259,1,'2023-09-18 06:19:08','2023-09-18 06:19:08','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"29\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-18 06:19:08','2023-09-18 06:19:08','',6535,'https://esigo.futuremediatrix.com/?p=7259',0,'revision','',0),(7260,1,'2023-09-18 06:19:08','2023-09-18 06:19:08','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"29\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-18 06:19:08','2023-09-18 06:19:08','',6535,'https://esigo.futuremediatrix.com/?p=7260',0,'revision','',0),(7261,1,'2023-09-18 06:19:08','2023-09-18 06:19:08','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"2\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-18 06:19:08','2023-09-18 06:19:08','',6535,'https://esigo.futuremediatrix.com/?p=7261',0,'revision','',0),(7262,1,'2023-09-18 06:22:37','2023-09-18 06:22:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"95\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:22:37','2023-09-18 06:22:37','',30,'https://esigo.futuremediatrix.com/?p=7262',0,'revision','',0),(7263,1,'2023-09-18 06:22:37','2023-09-18 06:22:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"95\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:22:37','2023-09-18 06:22:37','',30,'https://esigo.futuremediatrix.com/?p=7263',0,'revision','',0),(7264,1,'2023-09-18 06:22:37','2023-09-18 06:22:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"122\"/></p>\n</form>\n			<img src=\"\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:22:37','2023-09-18 06:22:37','',30,'https://esigo.futuremediatrix.com/?p=7264',0,'revision','',0),(7265,1,'2023-09-18 06:22:58','2023-09-18 06:22:58','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"122\"/></p>\n</form>\n			<img src=\"\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:22:58','2023-09-18 06:22:58','',30,'https://esigo.futuremediatrix.com/?p=7265',0,'revision','',0),(7266,1,'2023-09-18 06:22:58','2023-09-18 06:22:58','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"122\"/></p>\n</form>\n			<img src=\"\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:22:58','2023-09-18 06:22:58','',30,'https://esigo.futuremediatrix.com/?p=7266',0,'revision','',0),(7267,1,'2023-09-18 06:22:58','2023-09-18 06:22:58','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"76\"/></p>\n</form>\n			<img src=\"\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:22:58','2023-09-18 06:22:58','',30,'https://esigo.futuremediatrix.com/?p=7267',0,'revision','',0),(7268,1,'2023-09-18 06:23:15','2023-09-18 06:23:15','','contact-us-image','','inherit','open','closed','','contact-us-girl','','','2023-09-18 06:27:46','2023-09-18 06:27:46','',30,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png',0,'attachment','image/png',0),(7269,1,'2023-09-18 06:24:05','2023-09-18 06:24:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"76\"/></p>\n</form>\n			<img src=\"\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:24:05','2023-09-18 06:24:05','',30,'https://esigo.futuremediatrix.com/?p=7269',0,'revision','',0),(7270,1,'2023-09-18 06:24:06','2023-09-18 06:24:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"76\"/></p>\n</form>\n			<img src=\"\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:24:06','2023-09-18 06:24:06','',30,'https://esigo.futuremediatrix.com/?p=7270',0,'revision','',0),(7271,1,'2023-09-18 06:24:06','2023-09-18 06:24:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"119\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:24:06','2023-09-18 06:24:06','',30,'https://esigo.futuremediatrix.com/?p=7271',0,'revision','',0),(7272,1,'2023-09-18 06:26:48','2023-09-18 06:26:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"119\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:26:48','2023-09-18 06:26:48','',30,'https://esigo.futuremediatrix.com/?p=7272',0,'revision','',0),(7273,1,'2023-09-18 06:26:48','2023-09-18 06:26:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"119\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:26:48','2023-09-18 06:26:48','',30,'https://esigo.futuremediatrix.com/?p=7273',0,'revision','',0),(7274,1,'2023-09-18 06:26:48','2023-09-18 06:26:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"64\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-e1695018342385.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:26:48','2023-09-18 06:26:48','',30,'https://esigo.futuremediatrix.com/?p=7274',0,'revision','',0),(7275,1,'2023-09-18 06:27:54','2023-09-18 06:27:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"64\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-e1695018342385.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:27:54','2023-09-18 06:27:54','',30,'https://esigo.futuremediatrix.com/?p=7275',0,'revision','',0),(7276,1,'2023-09-18 06:27:54','2023-09-18 06:27:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"64\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-e1695018342385.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:27:54','2023-09-18 06:27:54','',30,'https://esigo.futuremediatrix.com/?p=7276',0,'revision','',0),(7277,1,'2023-09-18 06:27:54','2023-09-18 06:27:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"17\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-e1695018445851.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 06:27:54','2023-09-18 06:27:54','',30,'https://esigo.futuremediatrix.com/?p=7277',0,'revision','',0),(7278,1,'2023-09-18 07:43:35','2023-09-18 07:43:35','','contact-us-image','','inherit','open','closed','','contact-us-girl-2','','','2023-09-18 07:44:37','2023-09-18 07:44:37','',30,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1.png',0,'attachment','image/png',0),(7279,1,'2023-09-18 07:44:39','2023-09-18 07:44:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"17\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-e1695018445851.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 07:44:39','2023-09-18 07:44:39','',30,'https://esigo.futuremediatrix.com/?p=7279',0,'revision','',0),(7280,1,'2023-09-18 07:44:39','2023-09-18 07:44:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"17\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-e1695018445851.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 07:44:39','2023-09-18 07:44:39','',30,'https://esigo.futuremediatrix.com/?p=7280',0,'revision','',0),(7281,1,'2023-09-18 07:44:39','2023-09-18 07:44:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"36\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 07:44:39','2023-09-18 07:44:39','',30,'https://esigo.futuremediatrix.com/?p=7281',0,'revision','',0),(7283,1,'2023-09-18 08:01:06','2023-09-18 08:01:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-18 08:01:06','2023-09-18 08:01:06','',6626,'https://esigo.futuremediatrix.com/?p=7283',0,'revision','',0),(7284,1,'2023-09-18 08:01:06','2023-09-18 08:01:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-18 08:01:06','2023-09-18 08:01:06','',6626,'https://esigo.futuremediatrix.com/?p=7284',0,'revision','',0);
INSERT INTO `wpsl_posts` VALUES (7285,1,'2023-09-18 08:01:06','2023-09-18 08:01:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-18 08:01:06','2023-09-18 08:01:06','',6626,'https://esigo.futuremediatrix.com/?p=7285',0,'revision','',0),(7288,1,'2023-09-18 08:05:50','2023-09-18 08:05:50','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"175\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-18 08:05:50','2023-09-18 08:05:50','',17,'https://esigo.futuremediatrix.com/?p=7288',0,'revision','',0),(7289,1,'2023-09-18 08:05:50','2023-09-18 08:05:50','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"175\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-18 08:05:50','2023-09-18 08:05:50','',17,'https://esigo.futuremediatrix.com/?p=7289',0,'revision','',0),(7290,1,'2023-09-18 08:05:50','2023-09-18 08:05:50','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"209\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-09-18 08:05:50','2023-09-18 08:05:50','',17,'https://esigo.futuremediatrix.com/?p=7290',0,'revision','',0),(7291,1,'2023-09-18 08:07:35','2023-09-18 08:07:35','<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n					<a>\n						Read More					</a>','slider component','','inherit','closed','closed','','6838-revision-v1','','','2023-09-18 08:07:35','2023-09-18 08:07:35','',6838,'https://esigo.futuremediatrix.com/?p=7291',0,'revision','',0),(7292,1,'2023-09-18 08:18:06','2023-09-18 08:18:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"113\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/customer-experience-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1797836\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target944403\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2042156\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1735665\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','publish','closed','closed','','customer-experience','','','2023-10-05 02:56:36','2023-10-05 02:56:36','',32,'https://esigo.futuremediatrix.com/?page_id=7292',1,'page','',0),(7293,1,'2023-09-18 08:18:06','2023-09-18 08:18:06','','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:18:06','2023-09-18 08:18:06','',7292,'https://esigo.futuremediatrix.com/?p=7293',0,'revision','',0),(7294,1,'2023-09-18 08:18:29','2023-09-18 08:18:29','','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:18:29','2023-09-18 08:18:29','',7292,'https://esigo.futuremediatrix.com/?p=7294',0,'revision','',0),(7295,1,'2023-09-18 08:18:29','2023-09-18 08:18:29','','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:18:29','2023-09-18 08:18:29','',7292,'https://esigo.futuremediatrix.com/?p=7295',0,'revision','',0),(7296,1,'2023-09-18 08:18:29','2023-09-18 08:18:29','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-5625\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">IT Support and Consulting</a></li>\n<li id=\"menu-item-5626\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Marketing and Advertising</a></li>\n<li id=\"menu-item-5627\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Human Resources</a></li>\n<li id=\"menu-item-5628\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Web Development</a></li>\n<li id=\"menu-item-5629\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">SEO &#038; Content Writing</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"165\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2188054\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target762438\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target124494\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1326865\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:18:29','2023-09-18 08:18:29','',7292,'https://esigo.futuremediatrix.com/?p=7296',0,'revision','',0),(7299,1,'2023-09-20 07:40:14','2023-09-18 08:19:09',' ','','','publish','closed','closed','','7299','','','2023-09-20 07:40:14','2023-09-20 07:40:14','',32,'https://esigo.futuremediatrix.com/2023/09/18/7299/',2,'nav_menu_item','',0),(7300,1,'2023-09-18 08:19:42','2023-09-18 08:19:42','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-e2b521b\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"52\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2261439\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1881348\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target752104\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2187209\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Infrastructure','','publish','closed','closed','','infrastructure','','','2023-09-21 07:33:05','2023-09-21 07:33:05','',32,'https://esigo.futuremediatrix.com/?page_id=7300',2,'page','',0),(7301,1,'2023-09-18 08:19:42','2023-09-18 08:19:42','','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 08:19:42','2023-09-18 08:19:42','',7300,'https://esigo.futuremediatrix.com/?p=7301',0,'revision','',0),(7302,1,'2023-09-18 08:20:02','2023-09-18 08:20:02','','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 08:20:02','2023-09-18 08:20:02','',7300,'https://esigo.futuremediatrix.com/?p=7302',0,'revision','',0),(7303,1,'2023-09-18 08:20:02','2023-09-18 08:20:02','','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 08:20:02','2023-09-18 08:20:02','',7300,'https://esigo.futuremediatrix.com/?p=7303',0,'revision','',0),(7304,1,'2023-09-18 08:20:02','2023-09-18 08:20:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"226\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1389636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2051953\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target575947\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target177334\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 08:20:02','2023-09-18 08:20:02','',7300,'https://esigo.futuremediatrix.com/?p=7304',0,'revision','',0),(7306,1,'2023-09-28 16:44:16','2023-09-18 08:20:23',' ','','','publish','closed','closed','','7306','','','2023-09-28 16:44:16','2023-09-28 16:44:16','',32,'https://esigo.futuremediatrix.com/2023/09/18/7306/',4,'nav_menu_item','',0),(7307,1,'2023-09-18 08:21:12','2023-09-18 08:21:12','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-5e8d886\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"1\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target295643\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1769352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target388790\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1486636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Enterprise Security','','publish','closed','closed','','enterprise-security','','','2024-04-03 06:12:57','2024-04-02 22:12:57','',32,'https://esigo.futuremediatrix.com/?page_id=7307',3,'page','',0),(7308,1,'2023-09-18 08:21:12','2023-09-18 08:21:12','','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:21:12','2023-09-18 08:21:12','',7307,'https://esigo.futuremediatrix.com/?p=7308',0,'revision','',0),(7309,1,'2023-09-18 08:21:25','2023-09-18 08:21:25','','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:21:25','2023-09-18 08:21:25','',7307,'https://esigo.futuremediatrix.com/?p=7309',0,'revision','',0),(7310,1,'2023-09-18 08:21:25','2023-09-18 08:21:25','','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:21:25','2023-09-18 08:21:25','',7307,'https://esigo.futuremediatrix.com/?p=7310',0,'revision','',0),(7311,1,'2023-09-18 08:21:25','2023-09-18 08:21:25','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"165\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1367756\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target293811\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1280117\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1194641\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:21:25','2023-09-18 08:21:25','',7307,'https://esigo.futuremediatrix.com/?p=7311',0,'revision','',0),(7312,1,'2023-09-18 08:21:33','2023-09-18 08:21:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-5e8d886\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"165\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />\n<h2>Business & finance</h2>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n<h2>Partners</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>AWS</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Microsoft Azure</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Google</h2>\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1367756\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target293811\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1280117\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1194641\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:21:33','2023-09-18 08:21:33','',7307,'https://esigo.futuremediatrix.com/?p=7312',0,'revision','',0),(7314,1,'2023-09-28 16:44:16','2023-09-18 08:21:41',' ','','','publish','closed','closed','','7314','','','2023-09-28 16:44:16','2023-09-28 16:44:16','',32,'https://esigo.futuremediatrix.com/2023/09/18/7314/',5,'nav_menu_item','',0),(7315,1,'2023-09-18 08:21:57','2023-09-18 08:21:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/Picture1-qmkx0vddkrxjlj3cugfc3q98dcwbf8tn7poyns4qjg.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1443221\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2088626\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target309584\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1347200\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','publish','closed','closed','','unified-communications','','','2024-04-12 10:14:40','2024-04-12 02:14:40','',32,'https://esigo.futuremediatrix.com/?page_id=7315',4,'page','',0),(7316,1,'2023-09-18 08:21:57','2023-09-18 08:21:57','','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 08:21:57','2023-09-18 08:21:57','',7315,'https://esigo.futuremediatrix.com/?p=7316',0,'revision','',0),(7317,1,'2023-09-18 08:22:10','2023-09-18 08:22:10','','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 08:22:10','2023-09-18 08:22:10','',7315,'https://esigo.futuremediatrix.com/?p=7317',0,'revision','',0),(7318,1,'2023-09-18 08:22:10','2023-09-18 08:22:10','','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 08:22:10','2023-09-18 08:22:10','',7315,'https://esigo.futuremediatrix.com/?p=7318',0,'revision','',0),(7319,1,'2023-09-18 08:22:10','2023-09-18 08:22:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"218\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target676293\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2078584\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1783800\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1390744\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 08:22:10','2023-09-18 08:22:10','',7315,'https://esigo.futuremediatrix.com/?p=7319',0,'revision','',0),(7321,1,'2023-09-28 16:44:16','2023-09-18 08:22:33',' ','','','publish','closed','closed','','7321','','','2023-09-28 16:44:16','2023-09-28 16:44:16','',32,'https://esigo.futuremediatrix.com/2023/09/18/7321/',3,'nav_menu_item','',0),(7322,1,'2023-09-18 08:24:23','2023-09-18 08:24:23','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-e02d8fb\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-5625\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">IT Support and Consulting</a></li>\n 	<li id=\"menu-item-5626\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Marketing and Advertising</a></li>\n 	<li id=\"menu-item-5627\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Human Resources</a></li>\n 	<li id=\"menu-item-5628\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Web Development</a></li>\n 	<li id=\"menu-item-5629\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">SEO &#038; Content Writing</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"76\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />\n<h2>Business & finance</h2>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n<h2>Partners</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>AWS</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Microsoft Azure</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Google</h2>\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target199919\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target810805\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1305907\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2191007\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n<h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch\nwith Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"119\"/></p>\n\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:24:23','2023-09-18 08:24:23','',1978,'https://esigo.futuremediatrix.com/?p=7322',0,'revision','',0),(7323,1,'2023-09-18 08:25:59','2023-09-18 08:25:59','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n<h2  style=\"color:#18191d\">Commited to Deliver Top\nQuality Services</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Cloud</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Customer Experience</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<!-- Start Testimonial Section -->\n\n<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n<h2>What They’re Saying?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Peter Johnson</h3>\nWeb developer\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Max Lawrence</h3>\nDigital marketing\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:25:59','2023-09-18 08:25:59','',32,'https://esigo.futuremediatrix.com/?p=7323',0,'revision','',0),(7324,1,'2023-09-18 08:25:59','2023-09-18 08:25:59','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n<h2  style=\"color:#18191d\">Commited to Deliver Top\nQuality Services</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Cloud</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Customer Experience</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/service-details/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<!-- Start Testimonial Section -->\n\n<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n<h2>What They’re Saying?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Peter Johnson</h3>\nWeb developer\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Max Lawrence</h3>\nDigital marketing\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:25:59','2023-09-18 08:25:59','',32,'https://esigo.futuremediatrix.com/?p=7324',0,'revision','',0),(7325,1,'2023-09-18 08:25:59','2023-09-18 08:25:59','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/services/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/services/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:25:59','2023-09-18 08:25:59','',32,'https://esigo.futuremediatrix.com/?p=7325',0,'revision','',0),(7327,1,'2023-09-18 08:27:26','2023-09-18 08:27:26','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/services/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/services/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:27:26','2023-09-18 08:27:26','',32,'https://esigo.futuremediatrix.com/?p=7327',0,'revision','',0),(7328,1,'2023-09-18 08:27:26','2023-09-18 08:27:26','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/services/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/services/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:27:26','2023-09-18 08:27:26','',32,'https://esigo.futuremediatrix.com/?p=7328',0,'revision','',0),(7329,1,'2023-09-18 08:27:26','2023-09-18 08:27:26','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:27:26','2023-09-18 08:27:26','',32,'https://esigo.futuremediatrix.com/?p=7329',0,'revision','',0),(7330,1,'2023-09-18 08:27:53','2023-09-18 08:27:53','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:27:53','2023-09-18 08:27:53','',32,'https://esigo.futuremediatrix.com/?p=7330',0,'revision','',0),(7331,1,'2023-09-18 08:27:53','2023-09-18 08:27:53','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:27:53','2023-09-18 08:27:53','',32,'https://esigo.futuremediatrix.com/?p=7331',0,'revision','',0),(7332,1,'2023-09-18 08:27:53','2023-09-18 08:27:53','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:27:53','2023-09-18 08:27:53','',32,'https://esigo.futuremediatrix.com/?p=7332',0,'revision','',0),(7333,1,'2023-09-18 08:27:56','2023-09-18 08:27:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-bba75ff\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-5625\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">IT Support and Consulting</a></li>\n 	<li id=\"menu-item-5626\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Marketing and Advertising</a></li>\n 	<li id=\"menu-item-5627\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Human Resources</a></li>\n 	<li id=\"menu-item-5628\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Web Development</a></li>\n 	<li id=\"menu-item-5629\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">SEO &#038; Content Writing</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"165\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />\n<h2>Business & finance</h2>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n<h2>Partners</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>AWS</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Microsoft Azure</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Google</h2>\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2188054\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target762438\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target124494\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1326865\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:27:56','2023-09-18 08:27:56','',7292,'https://esigo.futuremediatrix.com/?p=7333',0,'revision','',0),(7334,1,'2023-09-18 08:28:23','2023-09-18 08:28:23','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:28:23','2023-09-18 08:28:23','',32,'https://esigo.futuremediatrix.com/?p=7334',0,'revision','',0),(7335,1,'2023-09-18 08:28:23','2023-09-18 08:28:23','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:28:23','2023-09-18 08:28:23','',32,'https://esigo.futuremediatrix.com/?p=7335',0,'revision','',0),(7336,1,'2023-09-18 08:28:23','2023-09-18 08:28:23','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:28:23','2023-09-18 08:28:23','',32,'https://esigo.futuremediatrix.com/?p=7336',0,'revision','',0),(7337,1,'2023-09-18 08:28:45','2023-09-18 08:28:45','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:28:45','2023-09-18 08:28:45','',32,'https://esigo.futuremediatrix.com/?p=7337',0,'revision','',0),(7338,1,'2023-09-18 08:28:45','2023-09-18 08:28:45','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:28:45','2023-09-18 08:28:45','',32,'https://esigo.futuremediatrix.com/?p=7338',0,'revision','',0),(7339,1,'2023-09-18 08:28:45','2023-09-18 08:28:45','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:28:45','2023-09-18 08:28:45','',32,'https://esigo.futuremediatrix.com/?p=7339',0,'revision','',0),(7340,1,'2023-09-18 08:29:15','2023-09-18 08:29:15','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:29:15','2023-09-18 08:29:15','',32,'https://esigo.futuremediatrix.com/?p=7340',0,'revision','',0),(7341,1,'2023-09-18 08:29:15','2023-09-18 08:29:15','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/service-details/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/service-details/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:29:15','2023-09-18 08:29:15','',32,'https://esigo.futuremediatrix.com/?p=7341',0,'revision','',0),(7342,1,'2023-09-18 08:29:15','2023-09-18 08:29:15','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:29:15','2023-09-18 08:29:15','',32,'https://esigo.futuremediatrix.com/?p=7342',0,'revision','',0),(7343,1,'2023-09-18 08:31:52','2023-09-18 08:31:52','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:31:52','2023-09-18 08:31:52','',32,'https://esigo.futuremediatrix.com/?p=7343',0,'revision','',0),(7344,1,'2023-09-18 08:31:52','2023-09-18 08:31:52','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:31:52','2023-09-18 08:31:52','',32,'https://esigo.futuremediatrix.com/?p=7344',0,'revision','',0),(7345,1,'2023-09-18 08:31:52','2023-09-18 08:31:52','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Services related to financial record-keeping, bookkeeping, preparation.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 08:31:52','2023-09-18 08:31:52','',32,'https://esigo.futuremediatrix.com/?p=7345',0,'revision','',0),(7346,1,'2023-09-18 08:34:31','2023-09-18 08:34:31','','Amazon_Web_Services-Logo.wine','','inherit','open','closed','','amazon_web_services-logo-wine','','','2023-09-18 08:34:37','2023-09-18 08:34:37','',1978,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg',0,'attachment','image/svg+xml',0),(7348,1,'2023-09-18 08:36:24','2023-09-18 08:36:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-e02d8fb\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-5625\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">IT Support and Consulting</a></li>\n 	<li id=\"menu-item-5626\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Marketing and Advertising</a></li>\n 	<li id=\"menu-item-5627\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Human Resources</a></li>\n 	<li id=\"menu-item-5628\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Web Development</a></li>\n 	<li id=\"menu-item-5629\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">SEO &#038; Content Writing</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"76\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />\n<h2>Business & finance</h2>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n<h2>Partners</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>AWS</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Microsoft Azure</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Google</h2>\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target199919\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target810805\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1305907\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2191007\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n<h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch\nwith Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"119\"/></p>\n\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:36:24','2023-09-18 08:36:24','',1978,'https://esigo.futuremediatrix.com/?p=7348',0,'revision','',0),(7349,1,'2023-09-18 08:36:24','2023-09-18 08:36:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-e02d8fb\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-5625\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">IT Support and Consulting</a></li>\n 	<li id=\"menu-item-5626\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Marketing and Advertising</a></li>\n 	<li id=\"menu-item-5627\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Human Resources</a></li>\n 	<li id=\"menu-item-5628\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Web Development</a></li>\n 	<li id=\"menu-item-5629\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">SEO &#038; Content Writing</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"76\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />\n<h2>Business & finance</h2>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n<h2>Partners</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>AWS</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Microsoft Azure</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Google</h2>\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target199919\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target810805\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1305907\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2191007\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n<h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch\nwith Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"119\"/></p>\n\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:36:24','2023-09-18 08:36:24','',1978,'https://esigo.futuremediatrix.com/?p=7349',0,'revision','',0),(7350,1,'2023-09-18 08:36:24','2023-09-18 08:36:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"108\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2087536\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1076529\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2088835\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target503719\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"176\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:36:24','2023-09-18 08:36:24','',1978,'https://esigo.futuremediatrix.com/?p=7350',0,'revision','',0),(7351,1,'2023-09-18 08:38:24','2023-09-18 08:38:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"108\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2087536\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1076529\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2088835\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target503719\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"176\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:38:24','2023-09-18 08:38:24','',1978,'https://esigo.futuremediatrix.com/?p=7351',0,'revision','',0),(7352,1,'2023-09-18 08:38:24','2023-09-18 08:38:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"108\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2087536\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1076529\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2088835\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target503719\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"176\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:38:24','2023-09-18 08:38:24','',1978,'https://esigo.futuremediatrix.com/?p=7352',0,'revision','',0),(7353,1,'2023-09-18 08:38:24','2023-09-18 08:38:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"38\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1587359\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1279717\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target871846\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1188477\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"47\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:38:24','2023-09-18 08:38:24','',1978,'https://esigo.futuremediatrix.com/?p=7353',0,'revision','',0),(7354,1,'2023-09-18 08:39:51','2023-09-18 08:39:51','','Google-Logo.wine','','inherit','open','closed','','google-logo-wine','','','2023-09-18 08:39:55','2023-09-18 08:39:55','',1978,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg',0,'attachment','image/svg+xml',0),(7355,1,'2023-09-18 08:40:02','2023-09-18 08:40:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"38\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1587359\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1279717\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target871846\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1188477\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"47\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:40:02','2023-09-18 08:40:02','',1978,'https://esigo.futuremediatrix.com/?p=7355',0,'revision','',0),(7356,1,'2023-09-18 08:40:02','2023-09-18 08:40:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"38\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1587359\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1279717\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target871846\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1188477\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"47\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:40:02','2023-09-18 08:40:02','',1978,'https://esigo.futuremediatrix.com/?p=7356',0,'revision','',0),(7357,1,'2023-09-18 08:40:02','2023-09-18 08:40:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"158\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target344211\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target817468\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target437743\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target955361\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"160\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 08:40:02','2023-09-18 08:40:02','',1978,'https://esigo.futuremediatrix.com/?p=7357',0,'revision','',0),(7358,1,'2023-09-18 08:41:46','2023-09-18 08:41:46','','Cisco_Webex_logo_-_Brandlogos.net.svg','','inherit','open','closed','','cisco_webex_logo_-_brandlogos-net-svg','','','2023-09-18 08:42:02','2023-09-18 08:42:02','',7292,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg.png',0,'attachment','image/png',0),(7359,1,'2023-09-18 08:43:03','2023-09-18 08:43:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-bba75ff\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-5625\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">IT Support and Consulting</a></li>\n 	<li id=\"menu-item-5626\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Marketing and Advertising</a></li>\n 	<li id=\"menu-item-5627\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Human Resources</a></li>\n 	<li id=\"menu-item-5628\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Web Development</a></li>\n 	<li id=\"menu-item-5629\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">SEO &#038; Content Writing</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"165\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />\n<h2>Business & finance</h2>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n<h2>Partners</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>AWS</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Microsoft Azure</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Google</h2>\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2188054\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target762438\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target124494\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1326865\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:43:03','2023-09-18 08:43:03','',7292,'https://esigo.futuremediatrix.com/?p=7359',0,'revision','',0),(7360,1,'2023-09-18 08:43:03','2023-09-18 08:43:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-bba75ff\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-5625\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">IT Support and Consulting</a></li>\n 	<li id=\"menu-item-5626\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Marketing and Advertising</a></li>\n 	<li id=\"menu-item-5627\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Human Resources</a></li>\n 	<li id=\"menu-item-5628\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">Web Development</a></li>\n 	<li id=\"menu-item-5629\" itemprop=\"name\"><a href=\"#\" itemprop=\"url\" class = \"hfe-menu-item\">SEO &#038; Content Writing</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"165\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />\n<h2>Business & finance</h2>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n<h2>Partners</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>AWS</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Microsoft Azure</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Google</h2>\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2188054\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target762438\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target124494\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1326865\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:43:03','2023-09-18 08:43:03','',7292,'https://esigo.futuremediatrix.com/?p=7360',0,'revision','',0),(7361,1,'2023-09-18 08:43:03','2023-09-18 08:43:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"46\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1864665\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target111861\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1360471\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2289265\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:43:03','2023-09-18 08:43:03','',7292,'https://esigo.futuremediatrix.com/?p=7361',0,'revision','',0),(7362,1,'2023-09-18 08:43:28','2023-09-18 08:43:28','','NICE_Ltd.-Logo.wine','','inherit','open','closed','','nice_ltd-logo-wine','','','2023-09-18 08:43:32','2023-09-18 08:43:32','',7292,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg',0,'attachment','image/svg+xml',0),(7363,1,'2023-09-18 08:43:45','2023-09-18 08:43:45','','verint-vector-logo','','inherit','open','closed','','verint-vector-logo','','','2023-09-18 08:43:50','2023-09-18 08:43:50','',7292,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg',0,'attachment','image/svg+xml',0),(7364,1,'2023-09-18 08:44:08','2023-09-18 08:44:08','','Zoom_Video_Communications-Logo.wine','','inherit','open','closed','','zoom_video_communications-logo-wine','','','2023-09-18 08:44:12','2023-09-18 08:44:12','',7292,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg',0,'attachment','image/svg+xml',0),(7365,1,'2023-09-18 08:44:16','2023-09-18 08:44:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"46\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1864665\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target111861\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1360471\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2289265\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:44:16','2023-09-18 08:44:16','',7292,'https://esigo.futuremediatrix.com/?p=7365',0,'revision','',0),(7366,1,'2023-09-18 08:44:16','2023-09-18 08:44:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"46\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1864665\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target111861\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1360471\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2289265\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:44:16','2023-09-18 08:44:16','',7292,'https://esigo.futuremediatrix.com/?p=7366',0,'revision','',0),(7367,1,'2023-09-18 08:44:16','2023-09-18 08:44:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"65\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2>NICE</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2>Verint</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2>Zoom</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2179079\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target737746\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2039758\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target182996\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 08:44:16','2023-09-18 08:44:16','',7292,'https://esigo.futuremediatrix.com/?p=7367',0,'revision','',0),(7368,1,'2023-09-18 08:45:53','2023-09-18 08:45:53','','audiocodes-logo-svg','','inherit','open','closed','','audiocodes-logo-svg','','','2023-09-18 08:45:58','2023-09-18 08:45:58','',7300,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg',0,'attachment','image/svg+xml',0),(7369,1,'2023-09-18 08:46:32','2023-09-18 08:46:32','','dialogic-corporation-vector-logo','','inherit','open','closed','','dialogic-corporation-vector-logo','','','2023-09-18 08:46:35','2023-09-18 08:46:35','',7300,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg',0,'attachment','image/svg+xml',0),(7370,1,'2023-09-18 08:46:51','2023-09-18 08:46:51','','ribbon_logo_hor_1_color_101-r-01','','inherit','open','closed','','ribbon_logo_hor_1_color_101-r-01','','','2023-09-18 08:46:55','2023-09-18 08:46:55','',7300,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png',0,'attachment','image/png',0),(7371,1,'2023-09-18 08:47:09','2023-09-18 08:47:09','','Cisco_Systems-Logo.wine','','inherit','open','closed','','cisco_systems-logo-wine','','','2023-09-18 08:47:13','2023-09-18 08:47:13','',7300,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg',0,'attachment','image/svg+xml',0),(7372,1,'2023-09-18 08:47:33','2023-09-18 08:47:33','','extreme-networks-vector-logo','','inherit','open','closed','','extreme-networks-vector-logo','','','2023-09-18 08:47:37','2023-09-18 08:47:37','',7300,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg',0,'attachment','image/svg+xml',0),(7373,1,'2023-09-18 08:47:57','2023-09-18 08:47:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"226\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1389636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2051953\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target575947\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target177334\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 08:47:57','2023-09-18 08:47:57','',7300,'https://esigo.futuremediatrix.com/?p=7373',0,'revision','',0),(7374,1,'2023-09-18 08:47:57','2023-09-18 08:47:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"226\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1389636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2051953\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target575947\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target177334\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 08:47:57','2023-09-18 08:47:57','',7300,'https://esigo.futuremediatrix.com/?p=7374',0,'revision','',0),(7375,1,'2023-09-18 08:47:57','2023-09-18 08:47:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"200\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2>Audiocodes</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2>Dialogic</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2>Ribbon</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2>Extreme Networks</h2>\n                <img src=\"\">                                  \n            <h2>HP</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target852201\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2172286\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1000360\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2125510\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 08:47:57','2023-09-18 08:47:57','',7300,'https://esigo.futuremediatrix.com/?p=7375',0,'revision','',0),(7376,1,'2023-09-18 08:51:45','2023-09-18 08:51:45','','Morphisec Logo','Morphisec.com (PRNewsfoto/Morphisec)','inherit','open','closed','','morphisec-logo','','','2023-09-18 08:51:51','2023-09-18 08:51:51','',7307,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg',0,'attachment','image/jpeg',0),(7377,1,'2023-09-18 08:52:16','2023-09-18 08:52:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-5e8d886\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"165\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />\n<h2>Business & finance</h2>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n<h2>Partners</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>AWS</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Microsoft Azure</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Google</h2>\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1367756\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target293811\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1280117\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1194641\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:52:16','2023-09-18 08:52:16','',7307,'https://esigo.futuremediatrix.com/?p=7377',0,'revision','',0),(7378,1,'2023-09-18 08:52:16','2023-09-18 08:52:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-5e8d886\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"165\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />\n<h2>Business & finance</h2>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n<h2>Partners</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>AWS</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Microsoft Azure</h2>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">\n<h2>Google</h2>\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1367756\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target293811\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1280117\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1194641\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:52:16','2023-09-18 08:52:16','',7307,'https://esigo.futuremediatrix.com/?p=7378',0,'revision','',0),(7379,1,'2023-09-18 08:52:16','2023-09-18 08:52:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"162\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target332995\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1387968\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1614256\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1948220\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:52:16','2023-09-18 08:52:16','',7307,'https://esigo.futuremediatrix.com/?p=7379',0,'revision','',0),(7380,1,'2023-09-18 08:52:29','2023-09-18 08:52:29','','Microsoft-Logo.wine','','inherit','open','closed','','microsoft-logo-wine','','','2023-09-18 08:52:33','2023-09-18 08:52:33','',7307,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg',0,'attachment','image/svg+xml',0),(7381,1,'2023-09-18 08:52:35','2023-09-18 08:52:35','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"162\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target332995\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1387968\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1614256\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1948220\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:52:35','2023-09-18 08:52:35','',7307,'https://esigo.futuremediatrix.com/?p=7381',0,'revision','',0),(7382,1,'2023-09-18 08:52:35','2023-09-18 08:52:35','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"162\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target332995\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1387968\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1614256\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1948220\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:52:35','2023-09-18 08:52:35','',7307,'https://esigo.futuremediatrix.com/?p=7382',0,'revision','',0),(7383,1,'2023-09-18 08:52:35','2023-09-18 08:52:35','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"128\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2>Microsoft</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target919171\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2086437\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1717220\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target410667\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 08:52:35','2023-09-18 08:52:35','',7307,'https://esigo.futuremediatrix.com/?p=7383',0,'revision','',0),(7384,1,'2023-09-18 08:54:36','2023-09-18 08:54:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"218\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target676293\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2078584\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1783800\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1390744\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 08:54:36','2023-09-18 08:54:36','',7315,'https://esigo.futuremediatrix.com/?p=7384',0,'revision','',0),(7385,1,'2023-09-18 08:54:36','2023-09-18 08:54:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/service-details-cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"218\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target676293\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2078584\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1783800\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1390744\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 08:54:36','2023-09-18 08:54:36','',7315,'https://esigo.futuremediatrix.com/?p=7385',0,'revision','',0),(7386,1,'2023-09-18 08:54:36','2023-09-18 08:54:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"96\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Teams</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Zoom Phone</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target537780\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2320572\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2095712\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1768142\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 08:54:36','2023-09-18 08:54:36','',7315,'https://esigo.futuremediatrix.com/?p=7386',0,'revision','',0),(7387,1,'2023-09-18 13:29:29','2023-09-18 13:29:29','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"2\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-18 13:29:29','2023-09-18 13:29:29','',6535,'https://esigo.futuremediatrix.com/?p=7387',0,'revision','',0),(7388,1,'2023-09-18 13:29:29','2023-09-18 13:29:29','<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_1.jpeg\" alt=\"Thumb\">\n                            01\n                        <h2>Meeting</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_2.jpeg\" alt=\"Thumb\">\n                            02\n                        <h2>Development</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                      <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/arrow_shape.png\"> \n                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/step_3.jpeg\" alt=\"Thumb\">\n                            03\n                        <h2>Release</h2>\n                        <p>We provide a range of digital marketing solutions.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"2\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-18 13:29:29','2023-09-18 13:29:29','',6535,'https://esigo.futuremediatrix.com/?p=7388',0,'revision','',0),(7389,1,'2023-09-18 13:29:29','2023-09-18 13:29:29','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"122\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-18 13:29:29','2023-09-18 13:29:29','',6535,'https://esigo.futuremediatrix.com/?p=7389',0,'revision','',0),(7390,1,'2023-09-18 13:30:45','2023-09-18 13:30:45','','News and Events','','publish','closed','closed','','news-and-events','','','2023-11-17 14:04:36','2023-11-17 06:04:36','',0,'https://esigo.futuremediatrix.com/?page_id=7390',0,'page','',0),(7391,1,'2023-09-18 13:30:45','2023-09-18 13:30:45','','News and Event','','inherit','closed','closed','','7390-revision-v1','','','2023-09-18 13:30:45','2023-09-18 13:30:45','',7390,'https://esigo.futuremediatrix.com/?p=7391',0,'revision','',0),(7392,1,'2023-09-18 13:33:11','2023-09-18 13:33:11','','News and Event','','inherit','closed','closed','','7390-revision-v1','','','2023-09-18 13:33:11','2023-09-18 13:33:11','',7390,'https://esigo.futuremediatrix.com/?p=7392',0,'revision','',0),(7393,1,'2023-09-18 13:33:11','2023-09-18 13:33:11','','News and Event','','inherit','closed','closed','','7390-revision-v1','','','2023-09-18 13:33:11','2023-09-18 13:33:11','',7390,'https://esigo.futuremediatrix.com/?p=7393',0,'revision','',0),(7394,1,'2023-09-18 13:33:11','2023-09-18 13:33:11','','News and Event','','inherit','closed','closed','','7390-revision-v1','','','2023-09-18 13:33:11','2023-09-18 13:33:11','',7390,'https://esigo.futuremediatrix.com/?p=7394',0,'revision','',0),(7395,1,'2023-09-18 13:35:37','2023-09-18 13:35:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"36\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 13:35:37','2023-09-18 13:35:37','',30,'https://esigo.futuremediatrix.com/?p=7395',0,'revision','',0),(7396,1,'2023-09-18 13:35:37','2023-09-18 13:35:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">News  and Event</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"36\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 13:35:37','2023-09-18 13:35:37','',30,'https://esigo.futuremediatrix.com/?p=7396',0,'revision','',0),(7397,1,'2023-09-18 13:35:38','2023-09-18 13:35:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-18 13:35:38','2023-09-18 13:35:38','',30,'https://esigo.futuremediatrix.com/?p=7397',0,'revision','',0),(7398,1,'2023-09-18 13:36:13','2023-09-18 13:36:13','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"122\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-18 13:36:13','2023-09-18 13:36:13','',6535,'https://esigo.futuremediatrix.com/?p=7398',0,'revision','',0),(7399,1,'2023-09-18 13:36:13','2023-09-18 13:36:13','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"122\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-18 13:36:13','2023-09-18 13:36:13','',6535,'https://esigo.futuremediatrix.com/?p=7399',0,'revision','',0),(7400,1,'2023-09-18 13:36:13','2023-09-18 13:36:13','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"95\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-18 13:36:13','2023-09-18 13:36:13','',6535,'https://esigo.futuremediatrix.com/?p=7400',0,'revision','',0),(7401,1,'2023-09-18 13:37:39','2023-09-18 13:37:39','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n<h2  style=\"color:#18191d\">Commited to Deliver Top\nQuality Services</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/cloud/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/security/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<!-- Start Testimonial Section -->\n\n<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n<h2>What They’re Saying?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Peter Johnson</h3>\nWeb developer\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Max Lawrence</h3>\nDigital marketing\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-18 13:37:39','2023-09-18 13:37:39','',32,'https://esigo.futuremediatrix.com/?p=7401',0,'revision','',0),(7402,1,'2023-09-18 13:44:56','2023-09-18 13:44:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"158\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target344211\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target817468\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target437743\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target955361\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"160\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 13:44:56','2023-09-18 13:44:56','',1978,'https://esigo.futuremediatrix.com/?p=7402',0,'revision','',0),(7403,1,'2023-09-18 13:44:56','2023-09-18 13:44:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"158\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target344211\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target817468\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target437743\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target955361\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"160\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 13:44:56','2023-09-18 13:44:56','',1978,'https://esigo.futuremediatrix.com/?p=7403',0,'revision','',0),(7404,1,'2023-09-18 13:44:56','2023-09-18 13:44:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"5\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1927826\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target503534\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target583263\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2133111\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"209\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 13:44:56','2023-09-18 13:44:56','',1978,'https://esigo.futuremediatrix.com/?p=7404',0,'revision','',0),(7405,1,'2023-09-18 13:45:40','2023-09-18 13:45:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"200\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2>Audiocodes</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2>Dialogic</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2>Ribbon</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2>Extreme Networks</h2>\n                <img src=\"\">                                  \n            <h2>HP</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target852201\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2172286\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1000360\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2125510\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 13:45:40','2023-09-18 13:45:40','',7300,'https://esigo.futuremediatrix.com/?p=7405',0,'revision','',0),(7406,1,'2023-09-18 13:45:40','2023-09-18 13:45:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"200\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2>Audiocodes</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2>Dialogic</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2>Ribbon</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2>Extreme Networks</h2>\n                <img src=\"\">                                  \n            <h2>HP</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target852201\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2172286\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1000360\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2125510\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 13:45:40','2023-09-18 13:45:40','',7300,'https://esigo.futuremediatrix.com/?p=7406',0,'revision','',0),(7407,1,'2023-09-18 13:45:40','2023-09-18 13:45:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"244\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2>Audiocodes</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2>Dialogic</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2>Ribbon</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2>Extreme Networks</h2>\n                <img src=\"\">                                  \n            <h2>HP</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1759022\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1170500\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1441193\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1604413\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 13:45:40','2023-09-18 13:45:40','',7300,'https://esigo.futuremediatrix.com/?p=7407',0,'revision','',0),(7408,1,'2023-09-18 13:46:20','2023-09-18 13:46:20','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"128\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2>Microsoft</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target919171\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2086437\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1717220\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target410667\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 13:46:20','2023-09-18 13:46:20','',7307,'https://esigo.futuremediatrix.com/?p=7408',0,'revision','',0),(7409,1,'2023-09-18 13:46:20','2023-09-18 13:46:20','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"128\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2>Microsoft</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target919171\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2086437\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1717220\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target410667\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 13:46:20','2023-09-18 13:46:20','',7307,'https://esigo.futuremediatrix.com/?p=7409',0,'revision','',0),(7410,1,'2023-09-18 13:46:20','2023-09-18 13:46:20','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"175\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2>Microsoft</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1509838\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target895906\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1358465\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1079863\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 13:46:20','2023-09-18 13:46:20','',7307,'https://esigo.futuremediatrix.com/?p=7410',0,'revision','',0),(7411,1,'2023-09-18 13:47:04','2023-09-18 13:47:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"96\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Teams</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Zoom Phone</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target537780\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2320572\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2095712\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1768142\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 13:47:04','2023-09-18 13:47:04','',7315,'https://esigo.futuremediatrix.com/?p=7411',0,'revision','',0),(7412,1,'2023-09-18 13:47:04','2023-09-18 13:47:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"96\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Teams</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Zoom Phone</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target537780\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2320572\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2095712\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1768142\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 13:47:04','2023-09-18 13:47:04','',7315,'https://esigo.futuremediatrix.com/?p=7412',0,'revision','',0),(7413,1,'2023-09-18 13:47:05','2023-09-18 13:47:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"65\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Teams</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Zoom Phone</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target658055\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1735230\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1043352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target467856\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 13:47:05','2023-09-18 13:47:05','',7315,'https://esigo.futuremediatrix.com/?p=7413',0,'revision','',0),(7414,1,'2023-09-18 13:47:49','2023-09-18 13:47:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"65\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2>NICE</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2>Verint</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2>Zoom</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2179079\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target737746\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2039758\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target182996\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 13:47:49','2023-09-18 13:47:49','',7292,'https://esigo.futuremediatrix.com/?p=7414',0,'revision','',0);
INSERT INTO `wpsl_posts` VALUES (7415,1,'2023-09-18 13:47:49','2023-09-18 13:47:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"65\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2>NICE</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2>Verint</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2>Zoom</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2179079\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target737746\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2039758\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target182996\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 13:47:49','2023-09-18 13:47:49','',7292,'https://esigo.futuremediatrix.com/?p=7415',0,'revision','',0),(7416,1,'2023-09-18 13:47:49','2023-09-18 13:47:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"126\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2>NICE</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2>Verint</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2>Zoom</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target521151\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2315102\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1880683\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target231407\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 13:47:49','2023-09-18 13:47:49','',7292,'https://esigo.futuremediatrix.com/?p=7416',0,'revision','',0),(7418,1,'2023-09-18 13:55:58','2023-09-18 13:55:58','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d21 !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-18 13:55:58','2023-09-18 13:55:58','',6791,'https://esigo.futuremediatrix.com/?p=7418',0,'revision','',0),(7421,1,'2023-09-18 13:59:00','2023-09-18 13:59:00','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-18 13:59:00','2023-09-18 13:59:00','',6791,'https://esigo.futuremediatrix.com/?p=7421',0,'revision','',0),(7424,1,'2023-09-18 13:59:51','2023-09-18 13:59:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"5\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1927826\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target503534\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target583263\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2133111\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"209\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 13:59:51','2023-09-18 13:59:51','',1978,'https://esigo.futuremediatrix.com/?p=7424',0,'revision','',0),(7425,1,'2023-09-18 13:59:51','2023-09-18 13:59:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"5\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1927826\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target503534\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target583263\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2133111\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"209\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 13:59:51','2023-09-18 13:59:51','',1978,'https://esigo.futuremediatrix.com/?p=7425',0,'revision','',0),(7426,1,'2023-09-18 13:59:51','2023-09-18 13:59:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"43\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1122034\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1026228\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1443520\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2082825\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"220\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-18 13:59:51','2023-09-18 13:59:51','',1978,'https://esigo.futuremediatrix.com/?p=7426',0,'revision','',0),(7427,1,'2023-09-18 14:00:46','2023-09-18 14:00:46','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"244\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2>Audiocodes</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2>Dialogic</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2>Ribbon</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2>Extreme Networks</h2>\n                <img src=\"\">                                  \n            <h2>HP</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1759022\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1170500\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1441193\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1604413\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 14:00:46','2023-09-18 14:00:46','',7300,'https://esigo.futuremediatrix.com/?p=7427',0,'revision','',0),(7428,1,'2023-09-18 14:00:46','2023-09-18 14:00:46','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"244\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2>Audiocodes</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2>Dialogic</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2>Ribbon</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2>Extreme Networks</h2>\n                <img src=\"\">                                  \n            <h2>HP</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1759022\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1170500\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1441193\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1604413\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 14:00:46','2023-09-18 14:00:46','',7300,'https://esigo.futuremediatrix.com/?p=7428',0,'revision','',0),(7429,1,'2023-09-18 14:00:47','2023-09-18 14:00:47','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"91\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2>Audiocodes</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2>Dialogic</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2>Ribbon</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2>Extreme Networks</h2>\n                <img src=\"\">                                  \n            <h2>HP</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1401290\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target859529\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1192646\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2101659\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-18 14:00:47','2023-09-18 14:00:47','',7300,'https://esigo.futuremediatrix.com/?p=7429',0,'revision','',0),(7430,1,'2023-09-18 14:01:14','2023-09-18 14:01:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"175\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2>Microsoft</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1509838\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target895906\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1358465\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1079863\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 14:01:14','2023-09-18 14:01:14','',7307,'https://esigo.futuremediatrix.com/?p=7430',0,'revision','',0),(7431,1,'2023-09-18 14:01:14','2023-09-18 14:01:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"175\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2>Microsoft</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1509838\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target895906\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1358465\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1079863\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 14:01:14','2023-09-18 14:01:14','',7307,'https://esigo.futuremediatrix.com/?p=7431',0,'revision','',0),(7432,1,'2023-09-18 14:01:14','2023-09-18 14:01:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"145\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2>Microsoft</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target238770\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1630634\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target464426\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2061917\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-18 14:01:14','2023-09-18 14:01:14','',7307,'https://esigo.futuremediatrix.com/?p=7432',0,'revision','',0),(7433,1,'2023-09-18 14:02:07','2023-09-18 14:02:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"65\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Teams</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Zoom Phone</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target658055\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1735230\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1043352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target467856\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 14:02:07','2023-09-18 14:02:07','',7315,'https://esigo.futuremediatrix.com/?p=7433',0,'revision','',0),(7434,1,'2023-09-18 14:02:07','2023-09-18 14:02:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"65\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Teams</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Zoom Phone</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target658055\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1735230\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1043352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target467856\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 14:02:07','2023-09-18 14:02:07','',7315,'https://esigo.futuremediatrix.com/?p=7434',0,'revision','',0),(7435,1,'2023-09-18 14:02:07','2023-09-18 14:02:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"163\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Teams</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Zoom Phone</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1269234\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target995885\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target692303\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2230280\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-18 14:02:07','2023-09-18 14:02:07','',7315,'https://esigo.futuremediatrix.com/?p=7435',0,'revision','',0),(7436,1,'2023-09-18 14:02:42','2023-09-18 14:02:42','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"126\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2>NICE</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2>Verint</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2>Zoom</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target521151\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2315102\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1880683\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target231407\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 14:02:42','2023-09-18 14:02:42','',7292,'https://esigo.futuremediatrix.com/?p=7436',0,'revision','',0),(7437,1,'2023-09-18 14:02:43','2023-09-18 14:02:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"126\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2>NICE</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2>Verint</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2>Zoom</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target521151\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2315102\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1880683\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target231407\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 14:02:43','2023-09-18 14:02:43','',7292,'https://esigo.futuremediatrix.com/?p=7437',0,'revision','',0),(7438,1,'2023-09-18 14:02:43','2023-09-18 14:02:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"202\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2>NICE</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2>Verint</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2>Zoom</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target749282\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1111809\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2033534\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target649516\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-18 14:02:43','2023-09-18 14:02:43','',7292,'https://esigo.futuremediatrix.com/?p=7438',0,'revision','',0),(7440,1,'2023-09-18 14:03:29','2023-09-18 14:03:29','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important\n			padding: 1rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-18 14:03:29','2023-09-18 14:03:29','',6791,'https://esigo.futuremediatrix.com/?p=7440',0,'revision','',0),(7442,1,'2023-09-18 14:03:43','2023-09-18 14:03:43','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-18 14:03:43','2023-09-18 14:03:43','',6791,'https://esigo.futuremediatrix.com/?p=7442',0,'revision','',0),(7445,1,'2023-09-19 04:12:05','2023-09-19 04:12:05','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n.cs_top_nav..cs_fs_12 {\n	font-size: 1rem !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:12:05','2023-09-19 04:12:05','',6791,'https://esigo.futuremediatrix.com/?p=7445',0,'revision','',0),(7447,1,'2023-09-19 04:12:09','2023-09-19 04:12:09','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:12:09','2023-09-19 04:12:09','',6791,'https://esigo.futuremediatrix.com/?p=7447',0,'revision','',0),(7449,1,'2023-09-19 04:15:05','2023-09-19 04:15:05','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:15:05','2023-09-19 04:15:05','',6791,'https://esigo.futuremediatrix.com/?p=7449',0,'revision','',0),(7451,1,'2023-09-19 04:17:59','2023-09-19 04:17:59','.cs_hero_text .cs_hero_btn {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:17:59','2023-09-19 04:17:59','',6791,'https://esigo.futuremediatrix.com/?p=7451',0,'revision','',0),(7452,1,'2023-09-19 04:19:38','2023-09-19 04:19:38','ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19, with skills shortages and the ease of migration, along with organisational-driven initiatives now the top three drivers for organisations considering managed ICT services.\n\n“The COVID-19 pandemic not only has accelerated managed service adoption in ASEAN, including the SMB [small- to medium-sized business] segment, but also changed enterprises’ buying behavior while considering new ICT solutions,” said Alfie Amir, principal analyst at industry research firm GlobalData. “Scalability, cost-savings and product lifecycle are no longer the top drivers for managed services.”\n\n<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/%20\" target=\"_blank\" rel=\"noopener\">\nRead More\n</a>','How the pandemic has changed ASEAN managed services buying habits (Channel Asia)','ASEAN enterprises’ managed services buying criteria','inherit','closed','closed','','6917-revision-v1','','','2023-09-19 04:19:38','2023-09-19 04:19:38','',6917,'https://esigo.futuremediatrix.com/?p=7452',0,'revision','',0),(7453,1,'2023-09-19 04:21:22','2023-09-19 04:21:22','Building out managed services capabilities in response to evolving customer buying patterns ranks as a leading priority for channel partners across Southeast Asia, as the ecosystem embraces subscription-based selling.\n\nAccording to EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- growing annuity revenue currently stands tall as the no.1 strategic objective for value-added resellers, system integrators and solution providers in the region.\n\n<a href=\"https://www.channelasia.tech/article/692441/managed-services-now-top-partner-priority-asean/%20\" target=\"_blank\" rel=\"noopener\">\nRead More\n</a>','Managed services now top partner priority in ASEAN','EDGE Research -- commissioned by Channel Asia and delivered in partnership with Tech Research Asia -- ','inherit','closed','closed','','6911-revision-v1','','','2023-09-19 04:21:22','2023-09-19 04:21:22','',6911,'https://esigo.futuremediatrix.com/?p=7453',0,'revision','',0),(7454,1,'2023-09-19 04:22:20','2023-09-19 04:22:20','As the shift to managed services gains momentum in Southeast Asia, mergers and acquisition (M&amp;A) activity is expected to heighten in a channel challenged by significant business model changes.\n\nNow in 2020, more so than before, partners are acknowledging the need to embrace recurring revenue sooner rather than later, amid plans to evolve from traditional value-added resellers into managed service providers (MSPs).\n\n<a href=\"https://www.channelasia.tech/article/671033/asean-embraces-managed-services-expect-channel-m-rise/%20\" target=\"_blank\" rel=\"noopener\">\nRead More\n</a>','As ASEAN embraces managed services, expect channel M&amp;A to rise','Partners must decide whether to evolve or exit as market transition begins.','inherit','closed','closed','','6883-revision-v1','','','2023-09-19 04:22:20','2023-09-19 04:22:20','',6883,'https://esigo.futuremediatrix.com/?p=7454',0,'revision','',0),(7456,1,'2023-09-19 04:26:27','2023-09-19 04:26:27','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:26:27','2023-09-19 04:26:27','',6791,'https://esigo.futuremediatrix.com/?p=7456',0,'revision','',0),(7458,1,'2023-09-19 04:26:51','2023-09-19 04:26:51','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:26:51','2023-09-19 04:26:51','',6791,'https://esigo.futuremediatrix.com/?p=7458',0,'revision','',0),(7460,1,'2023-09-19 04:27:07','2023-09-19 04:27:07','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:27:07','2023-09-19 04:27:07','',6791,'https://esigo.futuremediatrix.com/?p=7460',0,'revision','',0),(7462,1,'2023-09-19 04:29:47','2023-09-19 04:29:47','','WhatsApp.svg','','inherit','open','closed','','whatsapp-svg','','','2023-09-19 04:29:52','2023-09-19 04:29:52','',6535,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png',0,'attachment','image/png',0),(7463,1,'2023-09-19 04:30:14','2023-09-19 04:30:14','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"95\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-19 04:30:14','2023-09-19 04:30:14','',6535,'https://esigo.futuremediatrix.com/?p=7463',0,'revision','',0),(7464,1,'2023-09-19 04:30:14','2023-09-19 04:30:14','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">+65 9677 2316</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">marketing@esi-asia.com</a>\n						</h2>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO (Asia) Pte Ltd <br/>8 Ubi Road 2, Zervex <br/>#06-31<br/>Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"95\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-19 04:30:14','2023-09-19 04:30:14','',6535,'https://esigo.futuremediatrix.com/?p=7464',0,'revision','',0),(7465,1,'2023-09-19 04:30:14','2023-09-19 04:30:14','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\"></a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"99\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-19 04:30:14','2023-09-19 04:30:14','',6535,'https://esigo.futuremediatrix.com/?p=7465',0,'revision','',0),(7467,1,'2023-09-19 04:31:01','2023-09-19 04:31:01','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:31:01','2023-09-19 04:31:01','',6791,'https://esigo.futuremediatrix.com/?p=7467',0,'revision','',0),(7469,1,'2023-09-19 04:31:10','2023-09-19 04:31:10','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #18191d12 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:31:10','2023-09-19 04:31:10','',6791,'https://esigo.futuremediatrix.com/?p=7469',0,'revision','',0),(7470,1,'2023-09-19 04:32:15','2023-09-19 04:32:15','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\"></a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"99\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-19 04:32:15','2023-09-19 04:32:15','',6535,'https://esigo.futuremediatrix.com/?p=7470',0,'revision','',0),(7471,1,'2023-09-19 04:32:15','2023-09-19 04:32:15','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\"></a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"99\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-19 04:32:15','2023-09-19 04:32:15','',6535,'https://esigo.futuremediatrix.com/?p=7471',0,'revision','',0),(7472,1,'2023-09-19 04:32:15','2023-09-19 04:32:15','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p></p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">Have Any Question?</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"118\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-19 04:32:15','2023-09-19 04:32:15','',6535,'https://esigo.futuremediatrix.com/?p=7472',0,'revision','',0),(7473,1,'2023-09-19 04:32:55','2023-09-19 04:32:55','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p></p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">Have Any Question?</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"118\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-19 04:32:55','2023-09-19 04:32:55','',6535,'https://esigo.futuremediatrix.com/?p=7473',0,'revision','',0),(7474,1,'2023-09-19 04:32:55','2023-09-19 04:32:55','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p></p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">Have Any Question?</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"118\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-19 04:32:55','2023-09-19 04:32:55','',6535,'https://esigo.futuremediatrix.com/?p=7474',0,'revision','',0),(7475,1,'2023-09-19 04:32:55','2023-09-19 04:32:55','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p></p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">Have Any Question?</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"197\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-19 04:32:55','2023-09-19 04:32:55','',6535,'https://esigo.futuremediatrix.com/?p=7475',0,'revision','',0),(7477,1,'2023-09-19 04:35:11','2023-09-19 04:35:11','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:35:11','2023-09-19 04:35:11','',6791,'https://esigo.futuremediatrix.com/?p=7477',0,'revision','',0),(7478,1,'2023-09-19 04:35:49','2023-09-19 04:35:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"43\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1122034\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1026228\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1443520\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2082825\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"220\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-19 04:35:49','2023-09-19 04:35:49','',1978,'https://esigo.futuremediatrix.com/?p=7478',0,'revision','',0),(7479,1,'2023-09-19 04:35:49','2023-09-19 04:35:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"43\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2>AWS</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Azure</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2>Google</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1122034\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1026228\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1443520\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2082825\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"220\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-19 04:35:49','2023-09-19 04:35:49','',1978,'https://esigo.futuremediatrix.com/?p=7479',0,'revision','',0),(7480,1,'2023-09-19 04:35:49','2023-09-19 04:35:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"110\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2226836\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target702215\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target837430\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1083724\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"0\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-19 04:35:49','2023-09-19 04:35:49','',1978,'https://esigo.futuremediatrix.com/?p=7480',0,'revision','',0),(7482,1,'2023-09-19 04:39:28','2023-09-19 04:39:28','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:39:28','2023-09-19 04:39:28','',6791,'https://esigo.futuremediatrix.com/?p=7482',0,'revision','',0),(7484,1,'2023-09-19 04:40:04','2023-09-19 04:40:04','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:40:04','2023-09-19 04:40:04','',6791,'https://esigo.futuremediatrix.com/?p=7484',0,'revision','',0),(7486,1,'2023-09-19 04:41:58','2023-09-19 04:41:58','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n	flex-wrap: wrap;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:41:58','2023-09-19 04:41:58','',6791,'https://esigo.futuremediatrix.com/?p=7486',0,'revision','',0),(7488,1,'2023-09-19 04:43:36','2023-09-19 04:43:36','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n	flex-wrap: wrap;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .elementor-widget-container .cs_mr_15{\n	margin-right: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 100px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 100px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-19 04:43:36','2023-09-19 04:43:36','',6791,'https://esigo.futuremediatrix.com/?p=7488',0,'revision','',0),(7489,1,'2023-09-19 04:44:10','2023-09-19 04:44:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"202\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2>NICE</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2>Verint</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2>Zoom</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target749282\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1111809\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2033534\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target649516\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-19 04:44:10','2023-09-19 04:44:10','',7292,'https://esigo.futuremediatrix.com/?p=7489',0,'revision','',0),(7490,1,'2023-09-19 04:44:10','2023-09-19 04:44:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"202\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2>Cisco Webex</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2>NICE</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2>Verint</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2>Zoom</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target749282\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1111809\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2033534\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target649516\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-19 04:44:10','2023-09-19 04:44:10','',7292,'https://esigo.futuremediatrix.com/?p=7490',0,'revision','',0),(7491,1,'2023-09-19 04:44:10','2023-09-19 04:44:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"64\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2246476\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target528301\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target840778\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1230842\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-19 04:44:10','2023-09-19 04:44:10','',7292,'https://esigo.futuremediatrix.com/?p=7491',0,'revision','',0),(7492,1,'2023-09-19 04:45:39','2023-09-19 04:45:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"91\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2>Audiocodes</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2>Dialogic</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2>Ribbon</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2>Extreme Networks</h2>\n                <img src=\"\">                                  \n            <h2>HP</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1401290\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target859529\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1192646\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2101659\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-19 04:45:39','2023-09-19 04:45:39','',7300,'https://esigo.futuremediatrix.com/?p=7492',0,'revision','',0),(7493,1,'2023-09-19 04:45:39','2023-09-19 04:45:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"91\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2>Audiocodes</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2>Dialogic</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2>Ribbon</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2>Extreme Networks</h2>\n                <img src=\"\">                                  \n            <h2>HP</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1401290\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target859529\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1192646\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2101659\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-19 04:45:39','2023-09-19 04:45:39','',7300,'https://esigo.futuremediatrix.com/?p=7493',0,'revision','',0),(7494,1,'2023-09-19 04:45:39','2023-09-19 04:45:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"2\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2188074\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target263781\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target250961\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1977171\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-19 04:45:39','2023-09-19 04:45:39','',7300,'https://esigo.futuremediatrix.com/?p=7494',0,'revision','',0),(7495,1,'2023-09-19 04:46:26','2023-09-19 04:46:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"145\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2>Microsoft</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target238770\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1630634\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target464426\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2061917\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-19 04:46:26','2023-09-19 04:46:26','',7307,'https://esigo.futuremediatrix.com/?p=7495',0,'revision','',0),(7496,1,'2023-09-19 04:46:26','2023-09-19 04:46:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"145\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2>Morphisec</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2>Microsoft</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target238770\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1630634\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target464426\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2061917\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-19 04:46:26','2023-09-19 04:46:26','',7307,'https://esigo.futuremediatrix.com/?p=7496',0,'revision','',0),(7497,1,'2023-09-19 04:46:26','2023-09-19 04:46:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"66\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target569968\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1928786\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target450556\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target134557\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-19 04:46:26','2023-09-19 04:46:26','',7307,'https://esigo.futuremediatrix.com/?p=7497',0,'revision','',0),(7498,1,'2023-09-19 04:47:14','2023-09-19 04:47:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"163\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Teams</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Zoom Phone</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1269234\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target995885\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target692303\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2230280\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-19 04:47:14','2023-09-19 04:47:14','',7315,'https://esigo.futuremediatrix.com/?p=7498',0,'revision','',0),(7499,1,'2023-09-19 04:47:14','2023-09-19 04:47:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"163\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Microsoft Teams</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2>Zoom Phone</h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1269234\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target995885\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target692303\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2230280\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-19 04:47:14','2023-09-19 04:47:14','',7315,'https://esigo.futuremediatrix.com/?p=7499',0,'revision','',0),(7500,1,'2023-09-19 04:47:14','2023-09-19 04:47:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"103\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1321781\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2003756\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2203938\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1804483\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-19 04:47:14','2023-09-19 04:47:14','',7315,'https://esigo.futuremediatrix.com/?p=7500',0,'revision','',0),(7501,1,'2023-09-19 04:47:21','2023-09-19 04:47:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"103\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1321781\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2003756\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2203938\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1804483\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-19 04:47:21','2023-09-19 04:47:21','',7315,'https://esigo.futuremediatrix.com/?p=7501',0,'revision','',0),(7502,1,'2023-09-19 04:47:21','2023-09-19 04:47:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"103\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2>Cisco CM</h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1321781\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2003756\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2203938\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1804483\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-19 04:47:21','2023-09-19 04:47:21','',7315,'https://esigo.futuremediatrix.com/?p=7502',0,'revision','',0),(7503,1,'2023-09-19 04:47:21','2023-09-19 04:47:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"214\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1153936\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1579744\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1692669\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1302529\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-19 04:47:21','2023-09-19 04:47:21','',7315,'https://esigo.futuremediatrix.com/?p=7503',0,'revision','',0),(7504,1,'2023-09-19 04:52:40','2023-09-19 04:52:40','','footer_bg','','inherit','open','closed','','footer_bg-3','','','2023-09-19 04:52:44','2023-09-19 04:52:44','',6626,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer_bg.jpg',0,'attachment','image/jpeg',0),(7505,1,'2023-09-19 04:52:50','2023-09-19 04:52:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 04:52:50','2023-09-19 04:52:50','',6626,'https://esigo.futuremediatrix.com/?p=7505',0,'revision','',0),(7506,1,'2023-09-19 04:52:50','2023-09-19 04:52:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 04:52:50','2023-09-19 04:52:50','',6626,'https://esigo.futuremediatrix.com/?p=7506',0,'revision','',0),(7507,1,'2023-09-19 04:52:50','2023-09-19 04:52:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 04:52:50','2023-09-19 04:52:50','',6626,'https://esigo.futuremediatrix.com/?p=7507',0,'revision','',0),(7508,1,'2023-09-19 05:22:24','2023-09-19 05:22:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 05:22:24','2023-09-19 05:22:24','',6626,'https://esigo.futuremediatrix.com/?p=7508',0,'revision','',0),(7509,1,'2023-09-19 05:22:24','2023-09-19 05:22:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 05:22:24','2023-09-19 05:22:24','',6626,'https://esigo.futuremediatrix.com/?p=7509',0,'revision','',0),(7510,1,'2023-09-19 05:22:24','2023-09-19 05:22:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 05:22:24','2023-09-19 05:22:24','',6626,'https://esigo.futuremediatrix.com/?p=7510',0,'revision','',0),(7511,1,'2023-09-19 07:42:56','2023-09-19 07:42:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 07:42:56','2023-09-19 07:42:56','',6626,'https://esigo.futuremediatrix.com/?p=7511',0,'revision','',0),(7512,1,'2023-09-19 07:42:56','2023-09-19 07:42:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 07:42:56','2023-09-19 07:42:56','',6626,'https://esigo.futuremediatrix.com/?p=7512',0,'revision','',0),(7513,1,'2023-09-19 07:42:56','2023-09-19 07:42:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 07:42:56','2023-09-19 07:42:56','',6626,'https://esigo.futuremediatrix.com/?p=7513',0,'revision','',0),(7514,1,'2023-09-19 07:49:57','2023-09-19 07:49:57','','footer_bg','','inherit','open','closed','','footer_bg-4','','','2023-09-19 07:50:03','2023-09-19 07:50:03','',6626,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/footer_bg-1.jpg',0,'attachment','image/jpeg',0),(7515,1,'2023-09-19 07:50:11','2023-09-19 07:50:11','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 07:50:11','2023-09-19 07:50:11','',6626,'https://esigo.futuremediatrix.com/?p=7515',0,'revision','',0),(7516,1,'2023-09-19 07:50:12','2023-09-19 07:50:12','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 07:50:12','2023-09-19 07:50:12','',6626,'https://esigo.futuremediatrix.com/?p=7516',0,'revision','',0),(7517,1,'2023-09-19 07:50:12','2023-09-19 07:50:12','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-19 07:50:12','2023-09-19 07:50:12','',6626,'https://esigo.futuremediatrix.com/?p=7517',0,'revision','',0),(7518,1,'2023-09-20 05:57:36','2023-09-20 05:57:36','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n<h2  style=\"color:#18191d\">Commited to Deliver Top\nQuality Services</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/cloud/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/security/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<!-- Start Testimonial Section -->\n\n<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n<h2>What They’re Saying?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Peter Johnson</h3>\nWeb developer\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Max Lawrence</h3>\nDigital marketing\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-20 05:57:36','2023-09-20 05:57:36','',32,'https://esigo.futuremediatrix.com/?p=7518',0,'revision','',0),(7519,1,'2023-09-20 05:57:36','2023-09-20 05:57:36','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n<h2  style=\"color:#18191d\">Commited to Deliver Top\nQuality Services</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/cloud/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/security/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n<h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a></h2>\nServices related to financial record-keeping, bookkeeping, preparation.\n\n<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n<!-- Start Testimonial Section -->\n\n<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n<h2>What They’re Saying?</h2>\nProviding legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.\n\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>\n<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Peter Johnson</h3>\nWeb developer\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Max Lawrence</h3>\nDigital marketing\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Darlene Robertson</h3>\nWeb design\n\n<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n\nI\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone\n<h3>Carol McCarthy</h3>\nProduct manager\n\n</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-20 05:57:36','2023-09-20 05:57:36','',32,'https://esigo.futuremediatrix.com/?p=7519',0,'revision','',0),(7520,1,'2023-09-20 05:57:36','2023-09-20 05:57:36','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-20 05:57:36','2023-09-20 05:57:36','',32,'https://esigo.futuremediatrix.com/?p=7520',0,'revision','',0),(7522,1,'2023-09-20 06:03:18','2023-09-20 06:03:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"110\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2226836\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target702215\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target837430\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1083724\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"0\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 06:03:18','2023-09-20 06:03:18','',1978,'https://esigo.futuremediatrix.com/?p=7522',0,'revision','',0),(7523,1,'2023-09-20 06:03:19','2023-09-20 06:03:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"110\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2226836\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target702215\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target837430\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1083724\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"0\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 06:03:19','2023-09-20 06:03:19','',1978,'https://esigo.futuremediatrix.com/?p=7523',0,'revision','',0),(7524,1,'2023-09-20 06:03:19','2023-09-20 06:03:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"226\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target359833\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2066608\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1155283\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1304956\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"136\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 06:03:19','2023-09-20 06:03:19','',1978,'https://esigo.futuremediatrix.com/?p=7524',0,'revision','',0),(7525,1,'2023-09-20 06:03:56','2023-09-20 06:03:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"226\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target359833\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2066608\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1155283\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1304956\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"136\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 06:03:56','2023-09-20 06:03:56','',1978,'https://esigo.futuremediatrix.com/?p=7525',0,'revision','',0),(7526,1,'2023-09-20 06:03:56','2023-09-20 06:03:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"226\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target359833\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2066608\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1155283\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1304956\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"136\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 06:03:56','2023-09-20 06:03:56','',1978,'https://esigo.futuremediatrix.com/?p=7526',0,'revision','',0),(7527,1,'2023-09-20 06:03:56','2023-09-20 06:03:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"53\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1009891\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1180560\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1389304\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target481449\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"103\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 06:03:56','2023-09-20 06:03:56','',1978,'https://esigo.futuremediatrix.com/?p=7527',0,'revision','',0),(7528,1,'2023-09-20 06:05:36','2023-09-20 06:05:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"64\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2246476\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target528301\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target840778\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1230842\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 06:05:36','2023-09-20 06:05:36','',7292,'https://esigo.futuremediatrix.com/?p=7528',0,'revision','',0),(7529,1,'2023-09-20 06:05:36','2023-09-20 06:05:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"64\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2246476\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target528301\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target840778\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1230842\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 06:05:36','2023-09-20 06:05:36','',7292,'https://esigo.futuremediatrix.com/?p=7529',0,'revision','',0),(7530,1,'2023-09-20 06:05:36','2023-09-20 06:05:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"161\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target703028\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target908367\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1378996\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target240846\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 06:05:36','2023-09-20 06:05:36','',7292,'https://esigo.futuremediatrix.com/?p=7530',0,'revision','',0),(7531,1,'2023-09-20 06:06:44','2023-09-20 06:06:44','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"161\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target703028\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target908367\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1378996\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target240846\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 06:06:44','2023-09-20 06:06:44','',7292,'https://esigo.futuremediatrix.com/?p=7531',0,'revision','',0),(7532,1,'2023-09-20 06:06:44','2023-09-20 06:06:44','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"161\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target703028\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target908367\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1378996\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target240846\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 06:06:44','2023-09-20 06:06:44','',7292,'https://esigo.futuremediatrix.com/?p=7532',0,'revision','',0),(7533,1,'2023-09-20 06:06:45','2023-09-20 06:06:45','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1117879\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1768155\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2084945\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1760332\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 06:06:45','2023-09-20 06:06:45','',7292,'https://esigo.futuremediatrix.com/?p=7533',0,'revision','',0),(7534,1,'2023-09-20 06:08:52','2023-09-20 06:08:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"2\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2188074\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target263781\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target250961\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1977171\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-20 06:08:52','2023-09-20 06:08:52','',7300,'https://esigo.futuremediatrix.com/?p=7534',0,'revision','',0),(7535,1,'2023-09-20 06:08:52','2023-09-20 06:08:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"2\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2188074\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target263781\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target250961\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1977171\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-20 06:08:52','2023-09-20 06:08:52','',7300,'https://esigo.futuremediatrix.com/?p=7535',0,'revision','',0),(7536,1,'2023-09-20 06:08:52','2023-09-20 06:08:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"236\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1973682\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1690474\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2001111\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2211606\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-20 06:08:52','2023-09-20 06:08:52','',7300,'https://esigo.futuremediatrix.com/?p=7536',0,'revision','',0),(7537,1,'2023-09-20 06:10:36','2023-09-20 06:10:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"66\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target569968\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1928786\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target450556\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target134557\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-20 06:10:36','2023-09-20 06:10:36','',7307,'https://esigo.futuremediatrix.com/?p=7537',0,'revision','',0),(7538,1,'2023-09-20 06:10:36','2023-09-20 06:10:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"66\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target569968\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1928786\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target450556\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target134557\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-20 06:10:36','2023-09-20 06:10:36','',7307,'https://esigo.futuremediatrix.com/?p=7538',0,'revision','',0),(7539,1,'2023-09-20 06:10:36','2023-09-20 06:10:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"139\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1774056\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target674804\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target138960\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1672393\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-20 06:10:36','2023-09-20 06:10:36','',7307,'https://esigo.futuremediatrix.com/?p=7539',0,'revision','',0),(7540,1,'2023-09-20 06:12:41','2023-09-20 06:12:41','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"214\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1153936\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1579744\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1692669\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1302529\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 06:12:41','2023-09-20 06:12:41','',7315,'https://esigo.futuremediatrix.com/?p=7540',0,'revision','',0),(7541,1,'2023-09-20 06:12:41','2023-09-20 06:12:41','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"214\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur</p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1153936\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1579744\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1692669\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1302529\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 06:12:41','2023-09-20 06:12:41','',7315,'https://esigo.futuremediatrix.com/?p=7541',0,'revision','',0),(7542,1,'2023-09-20 06:12:41','2023-09-20 06:12:41','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"89\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target997805\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1818266\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target497183\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1360411\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 06:12:41','2023-09-20 06:12:41','',7315,'https://esigo.futuremediatrix.com/?p=7542',0,'revision','',0),(7544,1,'2023-09-20 06:14:44','2023-09-20 06:14:44','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n	flex-wrap: wrap;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .elementor-widget-container .cs_mr_15{\n	margin-right: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 125px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 125px !important\n}\n\n.partner-logo img {\n    max-width: 100% !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-20 06:14:44','2023-09-20 06:14:44','',6791,'https://esigo.futuremediatrix.com/?p=7544',0,'revision','',0),(7546,1,'2023-09-20 06:17:09','2023-09-20 06:17:09','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n	flex-wrap: wrap;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 125px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 125px !important\n}\n\n.partner-logo img {\n    max-width: 125px !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-20 06:17:09','2023-09-20 06:17:09','',6791,'https://esigo.futuremediatrix.com/?p=7546',0,'revision','',0),(7548,1,'2023-09-20 06:19:56','2023-09-20 06:19:56','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n	flex-wrap: wrap;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 125px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 125px !important\n}\n\n.partner-logo img {\n    max-width: 125px !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n	.cs_site_branding img {\n		max-height: 90px !important\n	}\n}\n\n@media screen and (max-width: 767px){\n	.cs_site_branding img {\n		max-height: 70px !important\n	}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-20 06:19:56','2023-09-20 06:19:56','',6791,'https://esigo.futuremediatrix.com/?p=7548',0,'revision','',0),(7549,1,'2023-09-20 07:26:44','2023-09-20 07:26:44','','Cloud','','inherit','open','closed','','cloudserviceconceptwithmanfingertouchingdigitalscreenwith','','','2023-09-20 07:27:56','2023-09-20 07:27:56','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960.jpg',0,'attachment','image/jpeg',0),(7550,1,'2023-09-20 07:28:23','2023-09-20 07:28:23','','Customer Experience','','inherit','open','closed','','shutterstock_1074687401','','','2023-09-20 07:28:48','2023-09-20 07:28:48','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401.jpg',0,'attachment','image/jpeg',0),(7551,1,'2023-09-20 07:29:17','2023-09-20 07:29:17','','Infrastructure','','inherit','open','closed','','shutterstock_1062915266','','','2023-09-20 07:29:49','2023-09-20 07:29:49','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266.jpg',0,'attachment','image/jpeg',0),(7553,1,'2023-09-20 07:31:23','2023-09-20 07:31:23','','Security','','inherit','open','closed','','securitythemewithamanonblurredcitybackground','','','2023-09-20 07:31:33','2023-09-20 07:31:33','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291.jpg',0,'attachment','image/jpeg',0),(7554,1,'2023-09-20 07:31:53','2023-09-20 07:31:53','','Unified Communications','','inherit','open','closed','','conceptofremotevideoconferencingduringpandemic','','','2023-09-20 07:32:06','2023-09-20 07:32:06','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526.jpg',0,'attachment','image/jpeg',0),(7555,1,'2023-09-20 07:32:10','2023-09-20 07:32:10','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-20 07:32:10','2023-09-20 07:32:10','',32,'https://esigo.futuremediatrix.com/?p=7555',0,'revision','',0),(7556,1,'2023-09-20 07:32:10','2023-09-20 07:32:10','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-20 07:32:10','2023-09-20 07:32:10','',32,'https://esigo.futuremediatrix.com/?p=7556',0,'revision','',0),(7557,1,'2023-09-20 07:32:10','2023-09-20 07:32:10','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-20 07:32:10','2023-09-20 07:32:10','',32,'https://esigo.futuremediatrix.com/?p=7557',0,'revision','',0),(7558,1,'2023-09-20 07:33:21','2023-09-20 07:33:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"53\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1009891\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1180560\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1389304\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target481449\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"103\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 07:33:21','2023-09-20 07:33:21','',1978,'https://esigo.futuremediatrix.com/?p=7558',0,'revision','',0),(7559,1,'2023-09-20 07:33:21','2023-09-20 07:33:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"53\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1009891\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1180560\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1389304\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target481449\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"103\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 07:33:21','2023-09-20 07:33:21','',1978,'https://esigo.futuremediatrix.com/?p=7559',0,'revision','',0),(7560,1,'2023-09-20 07:33:21','2023-09-20 07:33:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"123\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1941318\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1490547\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target409701\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target409396\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"139\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 07:33:21','2023-09-20 07:33:21','',1978,'https://esigo.futuremediatrix.com/?p=7560',0,'revision','',0),(7561,1,'2023-09-20 07:34:05','2023-09-20 07:34:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1117879\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1768155\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2084945\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1760332\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 07:34:05','2023-09-20 07:34:05','',7292,'https://esigo.futuremediatrix.com/?p=7561',0,'revision','',0),(7562,1,'2023-09-20 07:34:05','2023-09-20 07:34:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1117879\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1768155\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2084945\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1760332\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 07:34:05','2023-09-20 07:34:05','',7292,'https://esigo.futuremediatrix.com/?p=7562',0,'revision','',0),(7563,1,'2023-09-20 07:34:05','2023-09-20 07:34:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"74\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target238582\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target718455\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2165402\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1107835\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 07:34:05','2023-09-20 07:34:05','',7292,'https://esigo.futuremediatrix.com/?p=7563',0,'revision','',0),(7564,1,'2023-09-20 07:34:31','2023-09-20 07:34:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"74\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target238582\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target718455\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2165402\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1107835\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 07:34:31','2023-09-20 07:34:31','',7292,'https://esigo.futuremediatrix.com/?p=7564',0,'revision','',0),(7565,1,'2023-09-20 07:34:31','2023-09-20 07:34:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"74\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target238582\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target718455\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2165402\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1107835\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 07:34:31','2023-09-20 07:34:31','',7292,'https://esigo.futuremediatrix.com/?p=7565',0,'revision','',0),(7566,1,'2023-09-20 07:34:31','2023-09-20 07:34:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"157\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1026367\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target723508\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1771125\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1029545\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-20 07:34:31','2023-09-20 07:34:31','',7292,'https://esigo.futuremediatrix.com/?p=7566',0,'revision','',0),(7567,1,'2023-09-20 07:35:04','2023-09-20 07:35:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"236\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1973682\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1690474\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2001111\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2211606\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-20 07:35:04','2023-09-20 07:35:04','',7300,'https://esigo.futuremediatrix.com/?p=7567',0,'revision','',0),(7568,1,'2023-09-20 07:35:04','2023-09-20 07:35:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"236\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1973682\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1690474\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2001111\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2211606\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-20 07:35:04','2023-09-20 07:35:04','',7300,'https://esigo.futuremediatrix.com/?p=7568',0,'revision','',0),(7569,1,'2023-09-20 07:35:04','2023-09-20 07:35:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"122\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1598786\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target784387\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1421180\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1570631\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-20 07:35:04','2023-09-20 07:35:04','',7300,'https://esigo.futuremediatrix.com/?p=7569',0,'revision','',0),(7570,1,'2023-09-20 07:35:38','2023-09-20 07:35:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"139\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1774056\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target674804\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target138960\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1672393\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-20 07:35:38','2023-09-20 07:35:38','',7307,'https://esigo.futuremediatrix.com/?p=7570',0,'revision','',0),(7571,1,'2023-09-20 07:35:38','2023-09-20 07:35:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"139\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1774056\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target674804\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target138960\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1672393\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-20 07:35:38','2023-09-20 07:35:38','',7307,'https://esigo.futuremediatrix.com/?p=7571',0,'revision','',0),(7572,1,'2023-09-20 07:35:38','2023-09-20 07:35:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"195\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1542350\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2256806\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2268691\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1317766\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-20 07:35:38','2023-09-20 07:35:38','',7307,'https://esigo.futuremediatrix.com/?p=7572',0,'revision','',0),(7573,1,'2023-09-20 07:36:02','2023-09-20 07:36:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"89\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target997805\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1818266\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target497183\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1360411\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 07:36:02','2023-09-20 07:36:02','',7315,'https://esigo.futuremediatrix.com/?p=7573',0,'revision','',0),(7574,1,'2023-09-20 07:36:03','2023-09-20 07:36:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"89\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1285\" height=\"761\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1.jpeg 1285w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-300x178.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-1024x606.jpeg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-1-768x455.jpeg 768w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target997805\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1818266\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target497183\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1360411\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 07:36:03','2023-09-20 07:36:03','',7315,'https://esigo.futuremediatrix.com/?p=7574',0,'revision','',0),(7575,1,'2023-09-20 07:36:03','2023-09-20 07:36:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"235\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1839224\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target519530\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target256293\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1682006\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 07:36:03','2023-09-20 07:36:03','',7315,'https://esigo.futuremediatrix.com/?p=7575',0,'revision','',0),(7577,1,'2023-09-20 07:36:39','2023-09-20 07:36:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"235\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1839224\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target519530\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target256293\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1682006\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 07:36:39','2023-09-20 07:36:39','',7315,'https://esigo.futuremediatrix.com/?p=7577',0,'revision','',0),(7578,1,'2023-09-20 07:36:39','2023-09-20 07:36:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"235\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1839224\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target519530\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target256293\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1682006\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 07:36:39','2023-09-20 07:36:39','',7315,'https://esigo.futuremediatrix.com/?p=7578',0,'revision','',0),(7579,1,'2023-09-20 07:36:39','2023-09-20 07:36:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"157\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1624258\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target425817\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target362583\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target502376\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 07:36:39','2023-09-20 07:36:39','',7315,'https://esigo.futuremediatrix.com/?p=7579',0,'revision','',0),(7581,1,'2023-09-20 07:46:28','2023-09-20 07:46:28','','cloud-icon','','inherit','open','closed','','untitled-1-04','','','2023-09-20 07:46:39','2023-09-20 07:46:39','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png',0,'attachment','image/png',0),(7582,1,'2023-09-20 07:47:20','2023-09-20 07:47:20','','customer-experience-icons','','inherit','open','closed','','untitled-1-05','','','2023-09-20 07:47:34','2023-09-20 07:47:34','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png',0,'attachment','image/png',0),(7583,1,'2023-09-20 07:47:53','2023-09-20 07:47:53','','infrastructure-icon','','inherit','open','closed','','untitled-1-01','','','2023-09-20 07:48:05','2023-09-20 07:48:05','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png',0,'attachment','image/png',0),(7584,1,'2023-09-20 07:48:34','2023-09-20 07:48:34','','security-icon','','inherit','open','closed','','untitled-1-03','','','2023-09-20 07:48:41','2023-09-20 07:48:41','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png',0,'attachment','image/png',0),(7585,1,'2023-09-20 07:49:15','2023-09-20 07:49:15','','Unified Communications-icon','','inherit','open','closed','','untitled-1-02','','','2023-09-20 07:49:31','2023-09-20 07:49:31','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png',0,'attachment','image/png',0),(7586,1,'2023-09-20 07:49:34','2023-09-20 07:49:34','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-20 07:49:34','2023-09-20 07:49:34','',32,'https://esigo.futuremediatrix.com/?p=7586',0,'revision','',0);
INSERT INTO `wpsl_posts` VALUES (7587,1,'2023-09-20 07:49:35','2023-09-20 07:49:35','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-20 07:49:35','2023-09-20 07:49:35','',32,'https://esigo.futuremediatrix.com/?p=7587',0,'revision','',0),(7588,1,'2023-09-20 07:49:35','2023-09-20 07:49:35','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-20 07:49:35','2023-09-20 07:49:35','',32,'https://esigo.futuremediatrix.com/?p=7588',0,'revision','',0),(7592,1,'2023-09-20 08:07:36','2023-09-20 08:07:36','<script>\r\n	if(window.location.href === \'https://esigo.futuremediatrix.com/category/article/\'){\r\n		window.location.replace(\'https://esigo.futuremediatrix.com/\');\r\n	}\r\n\r\n	if (window.location.href === \'https://esigo.futuremediatrix.com/category/news-and-events/\'){\r\n		window.location.replace(\'https://esigo.futuremediatrix.com/news-and-events/\');\r\n	}\r\n</script>','Auto Replace Snippet','','publish','closed','closed','','untitled-snippet','','','2024-04-03 05:36:35','2024-04-02 21:36:35','',0,'https://esigo.futuremediatrix.com/wpcode/untitled-snippet/',0,'wpcode','',0),(7593,1,'2023-09-20 08:18:19','2023-09-20 08:18:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"123\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1941318\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1490547\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target409701\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target409396\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"139\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 08:18:19','2023-09-20 08:18:19','',1978,'https://esigo.futuremediatrix.com/?p=7593',0,'revision','',0),(7594,1,'2023-09-20 08:18:19','2023-09-20 08:18:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"123\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1941318\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1490547\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target409701\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target409396\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"139\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 08:18:19','2023-09-20 08:18:19','',1978,'https://esigo.futuremediatrix.com/?p=7594',0,'revision','',0),(7595,1,'2023-09-20 08:18:20','2023-09-20 08:18:20','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"60\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2054793\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2141546\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target413433\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1022389\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"86\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-20 08:18:20','2023-09-20 08:18:20','',1978,'https://esigo.futuremediatrix.com/?p=7595',0,'revision','',0),(7596,1,'2023-09-20 08:21:07','2023-09-20 08:21:07','','Hewlett_Packard_Enterprise_logo','','inherit','open','closed','','hewlett_packard_enterprise_logo','','','2023-09-20 08:21:12','2023-09-20 08:21:12','',7300,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png',0,'attachment','image/png',0),(7597,1,'2023-09-20 08:21:15','2023-09-20 08:21:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"122\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1598786\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target784387\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1421180\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1570631\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-20 08:21:15','2023-09-20 08:21:15','',7300,'https://esigo.futuremediatrix.com/?p=7597',0,'revision','',0),(7598,1,'2023-09-20 08:21:15','2023-09-20 08:21:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"122\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1598786\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target784387\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1421180\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1570631\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-20 08:21:15','2023-09-20 08:21:15','',7300,'https://esigo.futuremediatrix.com/?p=7598',0,'revision','',0),(7599,1,'2023-09-20 08:21:15','2023-09-20 08:21:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"226\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1228946\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1914381\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target833426\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target725904\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-20 08:21:15','2023-09-20 08:21:15','',7300,'https://esigo.futuremediatrix.com/?p=7599',0,'revision','',0),(7600,1,'2023-09-20 08:22:09','2023-09-20 08:22:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"157\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1624258\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target425817\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target362583\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target502376\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 08:22:09','2023-09-20 08:22:09','',7315,'https://esigo.futuremediatrix.com/?p=7600',0,'revision','',0),(7601,1,'2023-09-20 08:22:09','2023-09-20 08:22:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"157\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-3.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1624258\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target425817\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target362583\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target502376\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 08:22:09','2023-09-20 08:22:09','',7315,'https://esigo.futuremediatrix.com/?p=7601',0,'revision','',0),(7602,1,'2023-09-20 08:22:09','2023-09-20 08:22:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"14\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1333570\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target122846\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1567331\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target259687\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-20 08:22:09','2023-09-20 08:22:09','',7315,'https://esigo.futuremediatrix.com/?p=7602',0,'revision','',0),(7612,1,'2023-09-21 04:19:01','2023-09-21 04:19:01','','Amazon_Web_Services-Logo.wine','','inherit','open','closed','','mediamodifier-design-6','','','2023-09-21 04:19:08','2023-09-21 04:19:08','',1978,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg',0,'attachment','image/svg+xml',0),(7613,1,'2023-09-21 04:19:13','2023-09-21 04:19:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"60\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2054793\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2141546\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target413433\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1022389\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"86\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:19:13','2023-09-21 04:19:13','',1978,'https://esigo.futuremediatrix.com/?p=7613',0,'revision','',0),(7614,1,'2023-09-21 04:19:13','2023-09-21 04:19:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"60\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Amazon_Web_Services-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2054793\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2141546\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target413433\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1022389\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"86\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:19:13','2023-09-21 04:19:13','',1978,'https://esigo.futuremediatrix.com/?p=7614',0,'revision','',0),(7615,1,'2023-09-21 04:19:13','2023-09-21 04:19:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"12\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2339480\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1948092\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1149240\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1982113\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"40\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:19:13','2023-09-21 04:19:13','',1978,'https://esigo.futuremediatrix.com/?p=7615',0,'revision','',0),(7617,1,'2023-09-21 04:22:05','2023-09-21 04:22:05','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n	flex-wrap: wrap;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 180px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 180px !important\n}\n\n.partner-logo img {\n    max-width: 180px !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n	.cs_site_branding img {\n		max-height: 90px !important\n	}\n}\n\n@media screen and (max-width: 767px){\n	.cs_site_branding img {\n		max-height: 70px !important\n	}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-21 04:22:05','2023-09-21 04:22:05','',6791,'https://esigo.futuremediatrix.com/?p=7617',0,'revision','',0),(7618,1,'2023-09-21 04:22:57','2023-09-21 04:22:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"12\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2339480\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1948092\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1149240\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1982113\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"40\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:22:57','2023-09-21 04:22:57','',1978,'https://esigo.futuremediatrix.com/?p=7618',0,'revision','',0),(7619,1,'2023-09-21 04:22:57','2023-09-21 04:22:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"12\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2339480\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1948092\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1149240\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1982113\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"40\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:22:57','2023-09-21 04:22:57','',1978,'https://esigo.futuremediatrix.com/?p=7619',0,'revision','',0),(7620,1,'2023-09-21 04:22:57','2023-09-21 04:22:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"210\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1766544\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target429850\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target324904\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1449689\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"135\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:22:57','2023-09-21 04:22:57','',1978,'https://esigo.futuremediatrix.com/?p=7620',0,'revision','',0),(7621,1,'2023-09-21 04:23:59','2023-09-21 04:23:59','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"210\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1766544\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target429850\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target324904\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1449689\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"135\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:23:59','2023-09-21 04:23:59','',1978,'https://esigo.futuremediatrix.com/?p=7621',0,'revision','',0),(7622,1,'2023-09-21 04:23:59','2023-09-21 04:23:59','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"210\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1766544\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target429850\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target324904\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1449689\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"135\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:23:59','2023-09-21 04:23:59','',1978,'https://esigo.futuremediatrix.com/?p=7622',0,'revision','',0),(7623,1,'2023-09-21 04:23:59','2023-09-21 04:23:59','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"95\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1190796\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target524930\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1048667\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1946704\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"192\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:23:59','2023-09-21 04:23:59','',1978,'https://esigo.futuremediatrix.com/?p=7623',0,'revision','',0),(7624,1,'2023-09-21 04:24:49','2023-09-21 04:24:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"157\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1026367\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target723508\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1771125\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1029545\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-21 04:24:49','2023-09-21 04:24:49','',7292,'https://esigo.futuremediatrix.com/?p=7624',0,'revision','',0),(7625,1,'2023-09-21 04:24:49','2023-09-21 04:24:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"157\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1026367\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target723508\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1771125\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1029545\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-21 04:24:49','2023-09-21 04:24:49','',7292,'https://esigo.futuremediatrix.com/?p=7625',0,'revision','',0),(7626,1,'2023-09-21 04:24:49','2023-09-21 04:24:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"118\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1727610\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target292021\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target708247\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1991256\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-21 04:24:49','2023-09-21 04:24:49','',7292,'https://esigo.futuremediatrix.com/?p=7626',0,'revision','',0),(7627,1,'2023-09-21 04:25:33','2023-09-21 04:25:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"226\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1228946\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1914381\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target833426\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target725904\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-21 04:25:33','2023-09-21 04:25:33','',7300,'https://esigo.futuremediatrix.com/?p=7627',0,'revision','',0),(7628,1,'2023-09-21 04:25:33','2023-09-21 04:25:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"226\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1228946\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1914381\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target833426\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target725904\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-21 04:25:33','2023-09-21 04:25:33','',7300,'https://esigo.futuremediatrix.com/?p=7628',0,'revision','',0),(7629,1,'2023-09-21 04:25:33','2023-09-21 04:25:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"202\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2040088\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1022123\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target454262\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1814539\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-21 04:25:33','2023-09-21 04:25:33','',7300,'https://esigo.futuremediatrix.com/?p=7629',0,'revision','',0),(7630,1,'2023-09-21 04:26:26','2023-09-21 04:26:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"195\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1542350\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2256806\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2268691\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1317766\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-21 04:26:26','2023-09-21 04:26:26','',7307,'https://esigo.futuremediatrix.com/?p=7630',0,'revision','',0),(7631,1,'2023-09-21 04:26:26','2023-09-21 04:26:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"195\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1542350\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2256806\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2268691\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1317766\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-21 04:26:26','2023-09-21 04:26:26','',7307,'https://esigo.futuremediatrix.com/?p=7631',0,'revision','',0),(7632,1,'2023-09-21 04:26:26','2023-09-21 04:26:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"219\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1644612\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1327702\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target346321\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2120051\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-21 04:26:26','2023-09-21 04:26:26','',7307,'https://esigo.futuremediatrix.com/?p=7632',0,'revision','',0),(7633,1,'2023-09-21 04:27:22','2023-09-21 04:27:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"95\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1190796\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target524930\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1048667\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1946704\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"192\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:27:22','2023-09-21 04:27:22','',1978,'https://esigo.futuremediatrix.com/?p=7633',0,'revision','',0),(7634,1,'2023-09-21 04:27:22','2023-09-21 04:27:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"95\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1190796\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target524930\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1048667\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1946704\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"192\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:27:22','2023-09-21 04:27:22','',1978,'https://esigo.futuremediatrix.com/?p=7634',0,'revision','',0),(7635,1,'2023-09-21 04:27:22','2023-09-21 04:27:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"11\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2253476\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1752630\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target365317\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1915705\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"74\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:27:22','2023-09-21 04:27:22','',1978,'https://esigo.futuremediatrix.com/?p=7635',0,'revision','',0),(7636,1,'2023-09-21 04:28:16','2023-09-21 04:28:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"11\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2253476\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1752630\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target365317\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1915705\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"74\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:28:16','2023-09-21 04:28:16','',1978,'https://esigo.futuremediatrix.com/?p=7636',0,'revision','',0),(7637,1,'2023-09-21 04:28:16','2023-09-21 04:28:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"11\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2253476\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1752630\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target365317\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1915705\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"74\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:28:16','2023-09-21 04:28:16','',1978,'https://esigo.futuremediatrix.com/?p=7637',0,'revision','',0),(7638,1,'2023-09-21 04:28:16','2023-09-21 04:28:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e02d8fb\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"229\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg\" alt=\"Cloud\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1912951960-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services on the cloud have become\nan integral part of modern businesses\' IT strategies. These services offer\norganizations the opportunity to offload the complexity of maintaining and\nmonitoring their cloud infrastructure, allowing them to focus on their core\nbusiness objectives. With managed services, ESIGO take on tasks such as server\nprovisioning, security, patch management, and performance optimization,\nensuring that applications run smoothly and securely. This approach not only\nenhances operational efficiency but also provides scalability and\ncost-effectiveness, as you pay only for the resources you consume. Moreover,\nmanaged cloud services offer a range of specialized solutions, from database\nmanagement to AI and machine learning services, enabling your businesses to\nharness the full potential of cloud technology while minimizing the burden of\nday-to-day management.<o:p></o:p></p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Mediamodifier-Design-6.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Google-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target262725\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1101797\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target809200\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2261169\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Book Now</h3>\n                  <h2  style=\"color:#FFFFFF\">Feel Free to Get in Touch <br> with Ralph</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5467-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5467\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5467-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n			</p>\n			<p><input size=\"40\" aria-invalid=\"false\" placeholder=\"Phone\" value=\"\" type=\"tel\" name=\"tel-371\" />\n			</p>\n			<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject\" value=\"\" type=\"text\" name=\"your-name\" />\n			</p>\n			<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n			</p>\n		<p><button>Send A Message</button>\n		</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_2\" name=\"_wpcf7_ak_js\" value=\"27\"/></p>\n</form>','Cloud','','inherit','closed','closed','','1978-revision-v1','','','2023-09-21 04:28:16','2023-09-21 04:28:16','',1978,'https://esigo.futuremediatrix.com/?p=7638',0,'revision','',0),(7639,1,'2023-09-21 04:28:54','2023-09-21 04:28:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"118\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1727610\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target292021\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target708247\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1991256\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-21 04:28:54','2023-09-21 04:28:54','',7292,'https://esigo.futuremediatrix.com/?p=7639',0,'revision','',0),(7640,1,'2023-09-21 04:28:54','2023-09-21 04:28:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"118\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1727610\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target292021\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target708247\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1991256\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-21 04:28:54','2023-09-21 04:28:54','',7292,'https://esigo.futuremediatrix.com/?p=7640',0,'revision','',0),(7641,1,'2023-09-21 04:28:54','2023-09-21 04:28:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"224\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1760431\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2206506\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1835473\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1971591\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-21 04:28:54','2023-09-21 04:28:54','',7292,'https://esigo.futuremediatrix.com/?p=7641',0,'revision','',0),(7642,1,'2023-09-21 04:29:28','2023-09-21 04:29:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"202\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2040088\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1022123\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target454262\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1814539\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-21 04:29:28','2023-09-21 04:29:28','',7300,'https://esigo.futuremediatrix.com/?p=7642',0,'revision','',0),(7643,1,'2023-09-21 04:29:28','2023-09-21 04:29:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"202\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2040088\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1022123\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target454262\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1814539\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-21 04:29:28','2023-09-21 04:29:28','',7300,'https://esigo.futuremediatrix.com/?p=7643',0,'revision','',0),(7644,1,'2023-09-21 04:29:28','2023-09-21 04:29:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e2b521b\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"52\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2261439\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1881348\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target752104\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2187209\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-21 04:29:28','2023-09-21 04:29:28','',7300,'https://esigo.futuremediatrix.com/?p=7644',0,'revision','',0),(7645,1,'2023-09-21 04:30:14','2023-09-21 04:30:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"219\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1644612\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1327702\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target346321\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2120051\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-21 04:30:14','2023-09-21 04:30:14','',7307,'https://esigo.futuremediatrix.com/?p=7645',0,'revision','',0),(7646,1,'2023-09-21 04:30:14','2023-09-21 04:30:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"219\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1644612\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1327702\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target346321\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2120051\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-21 04:30:14','2023-09-21 04:30:14','',7307,'https://esigo.futuremediatrix.com/?p=7646',0,'revision','',0),(7647,1,'2023-09-21 04:30:14','2023-09-21 04:30:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"1\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target295643\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1769352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target388790\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1486636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-21 04:30:14','2023-09-21 04:30:14','',7307,'https://esigo.futuremediatrix.com/?p=7647',0,'revision','',0),(7648,1,'2023-09-21 04:31:02','2023-09-21 04:31:02','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"14\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1333570\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target122846\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1567331\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target259687\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-21 04:31:02','2023-09-21 04:31:02','',7315,'https://esigo.futuremediatrix.com/?p=7648',0,'revision','',0),(7649,1,'2023-09-21 04:31:03','2023-09-21 04:31:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"14\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1333570\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target122846\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1567331\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target259687\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-21 04:31:03','2023-09-21 04:31:03','',7315,'https://esigo.futuremediatrix.com/?p=7649',0,'revision','',0),(7650,1,'2023-09-21 04:31:03','2023-09-21 04:31:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"61\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target841547\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1186915\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1970472\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target903178\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-21 04:31:03','2023-09-21 04:31:03','',7315,'https://esigo.futuremediatrix.com/?p=7650',0,'revision','',0),(7651,1,'2023-09-21 04:32:16','2023-09-21 04:32:16','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p></p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">Have Any Question?</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"197\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-21 04:32:16','2023-09-21 04:32:16','',6535,'https://esigo.futuremediatrix.com/?p=7651',0,'revision','',0),(7652,1,'2023-09-21 04:32:16','2023-09-21 04:32:16','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p></p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">Have Any Question?</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"197\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-21 04:32:16','2023-09-21 04:32:16','',6535,'https://esigo.futuremediatrix.com/?p=7652',0,'revision','',0),(7653,1,'2023-09-21 04:32:16','2023-09-21 04:32:16','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>We look forward to hearing from you and collaborating for a secured, high technology, AI-driven solution to address your business needs.</p>\n					<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/WhatsApp.svg.png\">\n						<p></p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"https://wa.me/6596772316\" style=\"color:#FFFFFF\">Have Any Question?</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"71\"/></p>\n</form>\n			<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/contact-us-girl-1-e1695023051270.png\" alt=\"\">','Contact Us','','inherit','closed','closed','','6535-revision-v1','','','2023-09-21 04:32:16','2023-09-21 04:32:16','',6535,'https://esigo.futuremediatrix.com/?p=7653',0,'revision','',0),(7654,1,'2023-09-21 04:33:31','2023-09-21 04:33:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:33:31','2023-09-21 04:33:31','',6626,'https://esigo.futuremediatrix.com/?p=7654',0,'revision','',0),(7655,1,'2023-09-21 04:33:31','2023-09-21 04:33:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/services\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:33:31','2023-09-21 04:33:31','',6626,'https://esigo.futuremediatrix.com/?p=7655',0,'revision','',0),(7656,1,'2023-09-21 04:33:31','2023-09-21 04:33:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:33:31','2023-09-21 04:33:31','',6626,'https://esigo.futuremediatrix.com/?p=7656',0,'revision','',0),(7657,1,'2023-09-21 04:34:36','2023-09-21 04:34:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:34:36','2023-09-21 04:34:36','',6626,'https://esigo.futuremediatrix.com/?p=7657',0,'revision','',0),(7658,1,'2023-09-21 04:34:36','2023-09-21 04:34:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:34:36','2023-09-21 04:34:36','',6626,'https://esigo.futuremediatrix.com/?p=7658',0,'revision','',0),(7659,1,'2023-09-21 04:34:36','2023-09-21 04:34:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:34:36','2023-09-21 04:34:36','',6626,'https://esigo.futuremediatrix.com/?p=7659',0,'revision','',0),(7660,1,'2023-09-21 04:35:37','2023-09-21 04:35:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:35:37','2023-09-21 04:35:37','',6626,'https://esigo.futuremediatrix.com/?p=7660',0,'revision','',0),(7661,1,'2023-09-21 04:35:37','2023-09-21 04:35:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:35:37','2023-09-21 04:35:37','',6626,'https://esigo.futuremediatrix.com/?p=7661',0,'revision','',0),(7662,1,'2023-09-21 04:35:37','2023-09-21 04:35:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:35:37','2023-09-21 04:35:37','',6626,'https://esigo.futuremediatrix.com/?p=7662',0,'revision','',0),(7663,1,'2023-09-21 04:36:33','2023-09-21 04:36:33','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-09-21 04:36:33','2023-09-21 04:36:33','',7390,'https://esigo.futuremediatrix.com/?p=7663',0,'revision','',0),(7665,1,'2023-09-21 04:40:17','2023-09-21 04:40:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:40:17','2023-09-21 04:40:17','',6626,'https://esigo.futuremediatrix.com/?p=7665',0,'revision','',0),(7666,1,'2023-09-21 04:40:17','2023-09-21 04:40:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:40:17','2023-09-21 04:40:17','',6626,'https://esigo.futuremediatrix.com/?p=7666',0,'revision','',0),(7667,1,'2023-09-21 04:40:18','2023-09-21 04:40:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:40:18','2023-09-21 04:40:18','',6626,'https://esigo.futuremediatrix.com/?p=7667',0,'revision','',0),(7668,1,'2023-09-21 04:42:00','2023-09-21 04:42:00','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:42:00','2023-09-21 04:42:00','',6626,'https://esigo.futuremediatrix.com/?p=7668',0,'revision','',0),(7669,1,'2023-09-21 04:42:00','2023-09-21 04:42:00','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:42:00','2023-09-21 04:42:00','',6626,'https://esigo.futuremediatrix.com/?p=7669',0,'revision','',0),(7670,1,'2023-09-21 04:42:00','2023-09-21 04:42:00','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 04:42:00','2023-09-21 04:42:00','',6626,'https://esigo.futuremediatrix.com/?p=7670',0,'revision','',0),(7671,1,'2023-09-21 04:44:50','2023-09-21 04:44:50','<img src=\"https://www.esi-asia.com/wp-content/uploads/2022/06/News-and-Events-eDM-732x1024.png\" />','Stop Attacks At The Entry Point with IronScales','','inherit','closed','closed','','7249-revision-v1','','','2023-09-21 04:44:50','2023-09-21 04:44:50','',7249,'https://esigo.futuremediatrix.com/?p=7671',0,'revision','',0),(7672,1,'2023-09-21 04:48:16','2023-09-21 04:48:16','<img src=\"https://www.esi-asia.com/wp-content/uploads/2023/07/eDM-Phone-System-Maintenance-Exclusive-Offer-Avaya-Alcatel-Cicso-mitel-Shortel-ESi-1-768x861.png\" />','Phone System Maintenance Exclusive Offer for New Customers','','inherit','closed','closed','','7235-revision-v1','','','2023-09-21 04:48:16','2023-09-21 04:48:16','',7235,'https://esigo.futuremediatrix.com/?p=7672',0,'revision','',0),(7673,1,'2023-09-21 04:48:36','2023-09-21 04:48:36','<img src=\"https://www.esi-asia.com/wp-content/uploads/2022/08/leapxpert_sleekflow-1024x1024.png\" />','Compliant Enterprise Messaging Solutions','','inherit','closed','closed','','7243-revision-v1','','','2023-09-21 04:48:36','2023-09-21 04:48:36','',7243,'https://esigo.futuremediatrix.com/?p=7673',0,'revision','',0),(7674,1,'2023-09-21 04:50:38','2023-09-21 04:50:38','<img src=\"https://www.esi-asia.com/wp-content/uploads/2022/08/leapxpert_sleekflow-1024x1024.png\" />','Compliant Enterprise Messaging Solutions','','inherit','closed','closed','','7243-revision-v1','','','2023-09-21 04:50:38','2023-09-21 04:50:38','',7243,'https://esigo.futuremediatrix.com/?p=7674',0,'revision','',0),(7675,1,'2023-09-21 04:50:38','2023-09-21 04:50:38','<img src=\"https://www.esi-asia.com/wp-content/uploads/2022/08/leapxpert_sleekflow-1024x1024.png\" />','Compliant Enterprise Messaging Solutions','','inherit','closed','closed','','7243-revision-v1','','','2023-09-21 04:50:38','2023-09-21 04:50:38','',7243,'https://esigo.futuremediatrix.com/?p=7675',0,'revision','',0),(7676,1,'2023-09-21 04:50:38','2023-09-21 04:50:38','<p><img src=\"https://www.esi-asia.com/wp-content/uploads/2022/08/leapxpert_sleekflow-1024x1024.png\" /></p>','Compliant Enterprise Messaging Solutions','','inherit','closed','closed','','7243-revision-v1','','','2023-09-21 04:50:38','2023-09-21 04:50:38','',7243,'https://esigo.futuremediatrix.com/?p=7676',0,'revision','',0),(7678,1,'2023-09-21 04:55:44','2023-09-21 04:55:44','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n	flex-wrap: wrap;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 180px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 180px !important\n}\n\n.partner-logo img {\n    max-width: 180px !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n	.cs_site_branding img {\n		max-height: 90px !important\n	}\n}\n\n@media screen and (max-width: 767px){\n	.cs_site_branding img {\n		max-height: 70px !important\n	}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}\n\n.sidebar-main .widget ul li a:hover {\n	color: #004699 !important\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-21 04:55:44','2023-09-21 04:55:44','',6791,'https://esigo.futuremediatrix.com/?p=7678',0,'revision','',0),(7680,1,'2023-09-21 05:21:54','2023-09-21 05:21:54','.cs_hero_text .cs_hero_btn, .sidebar-main #block-14, .sidebar-main #block-15, .sidebar-main #block-17 {\n	display:none !important\n}\n\n.cs_main_header, .cs_top_header {\n	background-color: #ffffff !important;\n}\n\n.cs_top_header {\n    border-bottom: 1px solid #3e3e3e4d !important;\n\n}\n\n.cs_top_header ul li a, .cs_top_header ul li a b {\n	color: #000000 !important\n}\n\np a {\n	color: #164b99;\n}\n\n.partner-logo .elementor-widget-container {\n	display: flex;\n    flex-direction: row;\n    align-items: center;\n	flex-wrap: wrap;\n}\n\n.partner-logo .elementor-widget-container .cs_mb_30{\n	margin-bottom: 0px !important\n}\n\n.partner-logo .bg-primary {\n    background-color: #ffffff00 !important;\n			padding: 0.25rem !important\n}\n\n.partner-logo .cs_height_70 {\n    width: 180px !important\n}\n\n.partner-logo .cs_height_70 {\n    height: 180px !important\n}\n\n.partner-logo img {\n    max-width: 180px !important\n}\n\n@media screen and (min-width: 768px){\n  .cs_top_nav.cs_fs_12 {\n	font-size: 1rem !important;\n}\n	.cs_site_branding img {\n		max-height: 90px !important\n	}\n}\n\n@media screen and (max-width: 767px){\n	.cs_site_branding img {\n		max-height: 70px !important\n	}\n}\n\n.cs_top_nav.cs_fs_12 {\n	font-size: 0.55rem;\n}\n\n.bizmax-contact-list img {\n	max-width: 75px !important\n}\n\n.sidebar-main .widget ul li a:hover {\n	color: #004699 !important\n}\n\n.bizmax-blog-main-section__blog img{\n	width: 100%\n}','bizmax-wp','','inherit','closed','closed','','6791-revision-v1','','','2023-09-21 05:21:54','2023-09-21 05:21:54','',6791,'https://esigo.futuremediatrix.com/?p=7680',0,'revision','',0),(7682,1,'2023-09-21 07:32:52','2023-09-21 07:32:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-bba75ff\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"224\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1760431\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2206506\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1835473\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1971591\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-09-21 07:32:52','2023-09-21 07:32:52','',7292,'https://esigo.futuremediatrix.com/?p=7682',0,'revision','',0),(7683,1,'2023-09-21 07:33:05','2023-09-21 07:33:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-e2b521b\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"52\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1440\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg\" alt=\"Infrastructure\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-300x169.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1024x576.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-768x432.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-1536x864.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1062915266-2048x1152.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for infrastructure\nare a lifeline for businesses seeking to streamline their IT operations and\nmaximize efficiency. These services encompass the outsourcing of tasks related\nto the design, setup, maintenance, and optimization of an organization\'s IT\ninfrastructure. With managed infrastructure services, you can offload the\ncomplexity of managing servers, networks, storage, and data centers to expert\nproviders, freeing up internal resources and reducing operational overhead.\nThis approach not only ensures high availability, security, and scalability but\nalso facilitates proactive monitoring and rapid issue resolution. ESIGO’s\nmanaged infrastructure services are instrumental in achieving cost\npredictability, as we operate on a subscription or pay-as-you-go model, making\nit easier for your businesses to align your IT expenses with your budgetary\ngoals. Whether it\'s on-premises, in the cloud, or a hybrid solution, managed\ninfrastructure services offer the stability and agility necessary for modern\nbusinesses to thrive in a digital-first world.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/audiocodes-logo-svg.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/dialogic-corporation-vector-logo.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/ribbon_logo_hor_1_color_101-r-01.png\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/extreme-networks-vector-logo.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Hewlett_Packard_Enterprise_logo.png\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2261439\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1881348\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target752104\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2187209\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Infrastructure','','inherit','closed','closed','','7300-revision-v1','','','2023-09-21 07:33:05','2023-09-21 07:33:05','',7300,'https://esigo.futuremediatrix.com/?p=7683',0,'revision','',0),(7684,1,'2023-09-21 07:33:26','2023-09-21 07:33:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-5e8d886\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"1\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target295643\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1769352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target388790\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1486636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Security','','inherit','closed','closed','','7307-revision-v1','','','2023-09-21 07:33:26','2023-09-21 07:33:26','',7307,'https://esigo.futuremediatrix.com/?p=7684',0,'revision','',0),(7685,1,'2023-09-21 07:33:49','2023-09-21 07:33:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-e5c2543\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"61\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target841547\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1186915\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1970472\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target903178\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-09-21 07:33:49','2023-09-21 07:33:49','',7315,'https://esigo.futuremediatrix.com/?p=7685',0,'revision','',0),(7686,1,'2023-09-21 07:41:45','2023-09-21 07:41:45','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 07:41:45','2023-09-21 07:41:45','',6626,'https://esigo.futuremediatrix.com/?p=7686',0,'revision','',0),(7687,1,'2023-09-21 07:41:45','2023-09-21 07:41:45','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 07:41:45','2023-09-21 07:41:45','',6626,'https://esigo.futuremediatrix.com/?p=7687',0,'revision','',0),(7688,1,'2023-09-21 07:41:45','2023-09-21 07:41:45','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 07:41:45','2023-09-21 07:41:45','',6626,'https://esigo.futuremediatrix.com/?p=7688',0,'revision','',0),(7689,1,'2023-09-21 09:42:14','2023-09-21 09:42:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:42:14','2023-09-21 09:42:14','',6626,'https://esigo.futuremediatrix.com/?p=7689',0,'revision','',0),(7690,1,'2023-09-21 09:42:14','2023-09-21 09:42:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:42:14','2023-09-21 09:42:14','',6626,'https://esigo.futuremediatrix.com/?p=7690',0,'revision','',0),(7691,1,'2023-09-21 09:42:14','2023-09-21 09:42:14','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:42:14','2023-09-21 09:42:14','',6626,'https://esigo.futuremediatrix.com/?p=7691',0,'revision','',0),(7692,1,'2023-09-21 09:42:31','2023-09-21 09:42:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:42:31','2023-09-21 09:42:31','',6626,'https://esigo.futuremediatrix.com/?p=7692',0,'revision','',0),(7693,1,'2023-09-21 09:42:31','2023-09-21 09:42:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:42:31','2023-09-21 09:42:31','',6626,'https://esigo.futuremediatrix.com/?p=7693',0,'revision','',0),(7694,1,'2023-09-21 09:42:31','2023-09-21 09:42:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:42:31','2023-09-21 09:42:31','',6626,'https://esigo.futuremediatrix.com/?p=7694',0,'revision','',0),(7695,1,'2023-09-21 09:43:36','2023-09-21 09:43:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:43:36','2023-09-21 09:43:36','',6626,'https://esigo.futuremediatrix.com/?p=7695',0,'revision','',0),(7696,1,'2023-09-21 09:43:36','2023-09-21 09:43:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:43:36','2023-09-21 09:43:36','',6626,'https://esigo.futuremediatrix.com/?p=7696',0,'revision','',0),(7697,1,'2023-09-21 09:43:37','2023-09-21 09:43:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:43:37','2023-09-21 09:43:37','',6626,'https://esigo.futuremediatrix.com/?p=7697',0,'revision','',0),(7698,1,'2023-09-21 09:45:05','2023-09-21 09:45:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:45:05','2023-09-21 09:45:05','',6626,'https://esigo.futuremediatrix.com/?p=7698',0,'revision','',0),(7699,1,'2023-09-21 09:45:06','2023-09-21 09:45:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:45:06','2023-09-21 09:45:06','',6626,'https://esigo.futuremediatrix.com/?p=7699',0,'revision','',0),(7700,1,'2023-09-21 09:45:06','2023-09-21 09:45:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-21 09:45:06','2023-09-21 09:45:06','',6626,'https://esigo.futuremediatrix.com/?p=7700',0,'revision','',0),(7702,1,'2023-09-21 10:53:18','2023-09-21 10:53:18','','map-esigo','','inherit','open','closed','','map-2','','','2023-09-21 10:54:12','2023-09-21 10:54:12','',6626,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP.jpg',0,'attachment','image/jpeg',0),(7703,1,'2023-09-21 10:54:16','2023-09-21 10:54:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-21 10:54:16','2023-09-21 10:54:16','',30,'https://esigo.futuremediatrix.com/?p=7703',0,'revision','',0),(7704,1,'2023-09-21 10:54:16','2023-09-21 10:54:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-21 10:54:16','2023-09-21 10:54:16','',30,'https://esigo.futuremediatrix.com/?p=7704',0,'revision','',0),(7705,1,'2023-09-21 10:54:16','2023-09-21 10:54:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"2560\" height=\"1449\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-scaled.jpg\" alt=\"map-esigo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-300x170.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-1024x580.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-768x435.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-1536x869.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-2048x1159.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-21 10:54:16','2023-09-21 10:54:16','',30,'https://esigo.futuremediatrix.com/?p=7705',0,'revision','',0),(7707,1,'2023-09-22 04:17:09','2023-09-22 04:17:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"2560\" height=\"1449\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-scaled.jpg\" alt=\"map-esigo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-300x170.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-1024x580.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-768x435.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-1536x869.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-2048x1159.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-22 04:17:09','2023-09-22 04:17:09','',30,'https://esigo.futuremediatrix.com/?p=7707',0,'revision','',0),(7708,1,'2023-09-22 04:17:09','2023-09-22 04:17:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"2560\" height=\"1449\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-scaled.jpg\" alt=\"map-esigo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-300x170.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-1024x580.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-768x435.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-1536x869.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/MAP-2048x1159.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-22 04:17:09','2023-09-22 04:17:09','',30,'https://esigo.futuremediatrix.com/?p=7708',0,'revision','',0),(7709,1,'2023-09-22 04:17:09','2023-09-22 04:17:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-22 04:17:09','2023-09-22 04:17:09','',30,'https://esigo.futuremediatrix.com/?p=7709',0,'revision','',0),(7710,1,'2023-09-22 08:32:35','2023-09-22 08:32:35','','maap-footer','','inherit','open','closed','','map_1','','','2023-09-22 08:32:46','2023-09-22 08:32:46','',6626,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/06/Map_1.png',0,'attachment','image/png',0),(7711,1,'2023-09-22 08:32:51','2023-09-22 08:32:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-22 08:32:51','2023-09-22 08:32:51','',6626,'https://esigo.futuremediatrix.com/?p=7711',0,'revision','',0),(7712,1,'2023-09-22 08:32:51','2023-09-22 08:32:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-22 08:32:51','2023-09-22 08:32:51','',6626,'https://esigo.futuremediatrix.com/?p=7712',0,'revision','',0),(7713,1,'2023-09-22 08:32:51','2023-09-22 08:32:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-22 08:32:51','2023-09-22 08:32:51','',6626,'https://esigo.futuremediatrix.com/?p=7713',0,'revision','',0),(7714,1,'2023-09-22 08:35:12','2023-09-22 08:35:12','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-22 08:35:12','2023-09-22 08:35:12','',6626,'https://esigo.futuremediatrix.com/?p=7714',0,'revision','',0),(7715,1,'2023-09-22 08:35:12','2023-09-22 08:35:12','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-22 08:35:12','2023-09-22 08:35:12','',6626,'https://esigo.futuremediatrix.com/?p=7715',0,'revision','',0),(7716,1,'2023-09-22 08:35:12','2023-09-22 08:35:12','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-09-22 08:35:12','2023-09-22 08:35:12','',6626,'https://esigo.futuremediatrix.com/?p=7716',0,'revision','',0),(7718,1,'2023-09-28 16:43:36','2023-09-28 16:43:36','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-28 16:43:36','2023-09-28 16:43:36','',32,'https://esigo.futuremediatrix.com/?p=7718',0,'revision','',0),(7719,1,'2023-09-28 16:43:36','2023-09-28 16:43:36','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-28 16:43:36','2023-09-28 16:43:36','',32,'https://esigo.futuremediatrix.com/?p=7719',0,'revision','',0),(7720,1,'2023-09-28 16:43:36','2023-09-28 16:43:36','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2023-09-28 16:43:36','2023-09-28 16:43:36','',32,'https://esigo.futuremediatrix.com/?p=7720',0,'revision','',0),(7722,1,'2023-09-28 16:46:52','2023-09-28 16:46:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-28 16:46:52','2023-09-28 16:46:52','',30,'https://esigo.futuremediatrix.com/?p=7722',0,'revision','',0),(7723,1,'2023-09-28 16:46:52','2023-09-28 16:46:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-28 16:46:52','2023-09-28 16:46:52','',30,'https://esigo.futuremediatrix.com/?p=7723',0,'revision','',0),(7724,1,'2023-09-28 16:46:52','2023-09-28 16:46:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p><strong>- Jakarta<br /></strong>ITC Roxy Mas Blok C1, <br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-09-28 16:46:52','2023-09-28 16:46:52','',30,'https://esigo.futuremediatrix.com/?p=7724',0,'revision','',0),(7725,1,'2023-10-05 02:53:18','2023-10-05 02:53:18','','unified-communication','','inherit','open','closed','','unified-communication','','','2023-10-05 02:53:18','2023-10-05 02:53:18','',7315,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication.jpg',0,'attachment','image/jpeg',0),(7727,1,'2023-10-05 02:55:15','2023-10-05 02:55:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-e5c2543\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"61\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target841547\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1186915\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1970472\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target903178\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-10-05 02:55:15','2023-10-05 02:55:15','',7315,'https://esigo.futuremediatrix.com/?p=7727',0,'revision','',0),(7728,1,'2023-10-05 02:55:15','2023-10-05 02:55:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-e5c2543\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"61\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Systems-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target841547\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1186915\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1970472\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target903178\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-10-05 02:55:15','2023-10-05 02:55:15','',7315,'https://esigo.futuremediatrix.com/?p=7728',0,'revision','',0),(7729,1,'2023-10-05 02:55:15','2023-10-05 02:55:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"178\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2298168\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1924417\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target199240\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1202841\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2023-10-05 02:55:15','2023-10-05 02:55:15','',7315,'https://esigo.futuremediatrix.com/?p=7729',0,'revision','',0),(7730,1,'2023-10-05 02:56:23','2023-10-05 02:56:23','','customer experience','','inherit','open','closed','','customer-experience-2','','','2023-10-05 02:56:23','2023-10-05 02:56:23','',7292,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/customer-experience.jpg',0,'attachment','image/jpeg',0),(7731,1,'2023-10-05 02:56:36','2023-10-05 02:56:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-bba75ff\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"224\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1760431\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2206506\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1835473\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1971591\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-10-05 02:56:36','2023-10-05 02:56:36','',7292,'https://esigo.futuremediatrix.com/?p=7731',0,'revision','',0),(7732,1,'2023-10-05 02:56:36','2023-10-05 02:56:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-bba75ff\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"224\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Cisco_Webex_logo_-_Brandlogos.net_.svg-e1695026539454.png\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/NICE_Ltd.-Logo.wine_.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/verint-vector-logo.svg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Zoom_Video_Communications-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1760431\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2206506\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1835473\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1971591\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-10-05 02:56:36','2023-10-05 02:56:36','',7292,'https://esigo.futuremediatrix.com/?p=7732',0,'revision','',0),(7733,1,'2023-10-05 02:56:36','2023-10-05 02:56:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-bba75ff\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"113\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg\" alt=\"Customer Experience\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1074687401-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for contact center solutions are revolutionizing customer experience. These services provide organizations with a comprehensive and outsourced approach to operating their contact centers. By partnering with ESIGO, your businesses can access a team of experts who handle everything from setting up and configuring contact center software and hardware to managing day-to-day operations, including agent training, performance monitoring, and technology updates. This not only ensures a seamless customer experience but also enables you to adapt quickly to changing customer needs and market dynamics. ESIGO’s managed contact center services offer scalability, cost-efficiency, and access to advanced technologies, such as AI-driven chatbots and analytics, helping businesses deliver exceptional customer service while focusing on your core competencies.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/customer-experience-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1797836\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target944403\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2042156\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1735665\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Customer Experience','','inherit','closed','closed','','7292-revision-v1','','','2023-10-05 02:56:36','2023-10-05 02:56:36','',7292,'https://esigo.futuremediatrix.com/?p=7733',0,'revision','',0),(7735,1,'2023-10-11 09:56:27','2023-10-11 09:56:27','','map_final','','inherit','open','closed','','map_final','','','2023-10-11 09:56:31','2023-10-11 09:56:31','',30,'https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png',0,'attachment','image/png',0),(7737,1,'2023-10-11 09:56:38','2023-10-11 09:56:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p><strong>- Jakarta<br /></strong>ITC Roxy Mas Blok C1, <br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-10-11 09:56:38','2023-10-11 09:56:38','',30,'https://esigo.futuremediatrix.com/?p=7737',0,'revision','',0),(7738,1,'2023-10-11 09:56:38','2023-10-11 09:56:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"1379\" height=\"771\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png\" alt=\"map\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map.png 1379w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-300x168.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-1024x573.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/map-768x429.png 768w\" sizes=\"(max-width: 1379px) 100vw, 1379px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p><strong>- Jakarta<br /></strong>ITC Roxy Mas Blok C1, <br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-10-11 09:56:38','2023-10-11 09:56:38','',30,'https://esigo.futuremediatrix.com/?p=7738',0,'revision','',0),(7739,1,'2023-10-11 09:56:38','2023-10-11 09:56:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p><strong>- Jakarta<br /></strong>ITC Roxy Mas Blok C1, <br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-10-11 09:56:38','2023-10-11 09:56:38','',30,'https://esigo.futuremediatrix.com/?p=7739',0,'revision','',0),(7740,1,'2023-10-11 10:18:05','2023-10-11 10:18:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p><strong>- Jakarta<br /></strong>ITC Roxy Mas Blok C1, <br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-10-11 10:18:05','2023-10-11 10:18:05','',30,'https://esigo.futuremediatrix.com/?p=7740',0,'revision','',0);
INSERT INTO `wpsl_posts` VALUES (7741,1,'2023-10-11 10:18:05','2023-10-11 10:18:05','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p><strong>- Jakarta<br /></strong>ITC Roxy Mas Blok C1, <br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-10-11 10:18:05','2023-10-11 10:18:05','',30,'https://esigo.futuremediatrix.com/?p=7741',0,'revision','',0),(7742,1,'2023-10-11 10:18:06','2023-10-11 10:18:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p><strong>- Jakarta<br /></strong>ITC Roxy Mas Blok C1, <br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-10-11 10:18:06','2023-10-11 10:18:06','',30,'https://esigo.futuremediatrix.com/?p=7742',0,'revision','',0),(7753,1,'2023-11-08 03:35:27','2023-11-08 03:35:27','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-08 03:35:27','2023-11-08 03:35:27','',7390,'https://esigo.co/?p=7753',0,'revision','',0),(7754,1,'2023-11-08 03:35:27','2023-11-08 03:35:27','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-08 03:35:27','2023-11-08 03:35:27','',7390,'https://esigo.co/?p=7754',0,'revision','',0),(7755,1,'2023-11-08 03:35:27','2023-11-08 03:35:27','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-08 03:35:27','2023-11-08 03:35:27','',7390,'https://esigo.co/?p=7755',0,'revision','',0),(7758,1,'2023-11-08 03:43:39','2023-11-08 03:43:39','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"209\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-11-08 03:43:39','2023-11-08 03:43:39','',17,'https://esigo.co/?p=7758',0,'revision','',0),(7759,1,'2023-11-08 03:43:39','2023-11-08 03:43:39','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n				* Creative Business & Finance\n				* Business Inspired Template\n				* Innovation Creative Design\n				* Creative Business & Finance\n					<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\" style=\"color:#18191d\">Our Service List</h3>\n					<h2 style=\"color:#18191d\">We Provide The Solution <br> For Our Clients</h2>\n					<p>I have been a loyal customer of this auto parts company for years and I cannot recommend them enough. Their extensive selection of high-quality parts and accessories.</p>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">How the pandemic has changed ASEAN managed services buying habits (Channel Asia)</a>\n				</h2>\n              <p>ASEAN enterprises’ managed services buying criteria has evolved since the onset of COVID-19.</p>\n                <a href=\"https://iotbusiness-platform.com/insights/how-the-pandemic-has-changed-asean-managed-services-buying-habits-channel-asia/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/4.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">Overcoming the most common cloud migration challenges</a>\n				</h2>\n              <p>The key is to recognize those potential risks and obstacles in the beginning and create a plan to manage them. With careful planning and evaluation</p>\n                <a href=\"https://www.lucidchart.com/blog/challenges-with-moving-to-the-cloud\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n			<h4 style=\"color:#18191d\">Digital agency services built specifically for your business</h4>\n			<a href=\"\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Find More Services</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1080\" height=\"1080\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape.png 1080w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-1024x1024.png 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-150x150.png 150w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/section-shape-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_shape_1.png\" alt=\"Shape\">\n		  <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/experience_icon.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Get Ready for Success with Bizmax Your Path to Growth.</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses. Creating visual content, such as logos, brochures, infographics, and other branding materials.</p>\n				<h3>Web development</h3>\n				<p>90%</p>\n	 	<!-- .cs_progressbar -->\n					<h3>Accounting and Bookkeeping</h3>\n					<p>Services related to financial record-keeping, bookkeeping.</p>\n					<h3>Human Resources (HR) Consulting</h3>\n					<p>Assistance with HR-related tasks such as recruitment.</p>\n			<a href=\"\">Get A Quote</a>\n			<a href=\"https://www.youtube.com/embed/VStvZjykQ00\">\n					<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					<path d=\"M1.71401 16C1.61636 16 1.51868 15.9748 1.43054 15.9246C1.25251 15.8231 1.14258 15.6339 1.14258 15.4285V0.570579C1.14258 0.365193 1.25251 0.176009 1.43054 0.0744495C1.61022 -0.026561 1.82844 -0.0243301 2.00475 0.0783627L14.5762 7.50735C14.7503 7.6106 14.8569 7.79755 14.8569 7.99957C14.8569 8.20159 14.7503 8.38855 14.5762 8.49179L2.00475 15.9207C1.9149 15.9732 1.81443 16 1.71401 16ZM2.28544 1.57172V14.4274L13.1621 7.99957L2.28544 1.57172Z\" fill=\"white\"/>\n					</svg>   \n				Watch the video               \n			</a>\n        <section>\n                        <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Our Latest Project</h3>\n                        <h2>Take a look our <br> Completed Projects</h2>\n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n										<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n									</svg>             \n									<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n										<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n										<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n									</svg>          \n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">SEO Optimized</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Campaing</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Marketing Webdesign</a></h3>\n                        <a href=\"https://bizmax.laralink.com/portfolio-details/\"></a>\n                        <h3><a href=\"https://bizmax.laralink.com/portfolio-details/\">Digital Product</a></h3>\n        </section>		\n        <section>\n                                <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Why Choose Us</h3>\n                                <h2>Developing a  design that <br> is easy to use and <br> navigate</h2>\n                                <p>Providing legal advice, contract drafting, compliance assistance, intellectual <br> property protection, and other legal support for businesses. Creating visual <br> content, such as logos, brochures, infographics</p>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-1.png\">\n                                        <h2> Digital agency services</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-2.png\">\n                                        <h2>Creative digital agency</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-3.png\">\n                                        <h2>Super expert developers</h2>\n                                            <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/f-4.png\">\n                                        <h2>Creating a user friendly design</h2>\n                <svg width=\"191\" height=\"197\" viewBox=\"0 0 191 197\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M100.397 107.26C113.305 117.648 127.237 124.564 139.602 126.736C139.678 126.749 139.75 126.756 139.825 126.77L155.856 32.5327C156.421 29.2004 153.306 26.3917 150.454 27.6622L68.5886 64.126C72.5569 77.7763 84.1472 94.1815 100.397 107.26Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M134.283 136.497C121.573 133.528 107.766 126.385 95.0023 116.124C77.395 101.968 65.2019 84.7963 60.4863 69.405L19.093 87.8249C15.8591 89.2634 16.1251 94.3774 19.5029 95.6938L80.2458 119.392C83.8188 120.786 86.8631 123.528 88.8105 127.109L121.922 187.961C123.762 191.345 128.37 190.622 129.013 186.848L137.475 137.15C136.42 136.96 135.357 136.747 134.283 136.497Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                <path d=\"M135.873 127.406C123.172 124.44 109.376 117.306 96.6244 107.06C66.6205 82.949 52.3161 50.0723 64.0597 32.2106C75.8041 14.3519 108.507 19.2476 138.51 43.3581C148.326 51.2452 156.884 60.5001 163.258 70.1219C164.637 72.2018 164.251 75.0376 162.4 76.4586C160.549 77.878 157.932 77.3443 156.556 75.2663C150.711 66.4452 142.82 57.9237 133.733 50.622C108.446 30.3012 79.6787 24.3911 70.9164 37.7191C62.1543 51.0456 76.1154 79.4713 101.404 99.7925C114.23 110.099 128.065 116.965 140.36 119.115C151.717 121.106 160.191 118.825 164.221 112.695C168.424 106.304 166.766 97.4981 164.635 91.2345C163.822 88.8441 164.914 86.2656 167.073 85.4735C169.232 84.6816 171.642 85.9765 172.455 88.3683C176.466 100.157 175.977 110.755 171.077 118.207C165.196 127.151 153.932 130.671 139.362 128.118C138.21 127.918 137.045 127.679 135.873 127.406Z\" fill=\"#888888\" fill-opacity=\"0.2\"/>\n                </svg>       \n        </section>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>		\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Meet Our Team Member</h3>\n                  <h2  style=\"color:#18191d\">Meet the professional team <br> behind the success</h2>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_1.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_2.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/team_member_3.jpeg\" alt=\"Ralph Edwards\">\n							</a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"#\"></a>\n							<a href=\"https://bizmax.laralink.com/team-details/\" >\n								<h2>Ralph Edwards</h2>\n								<p>Web designer</p>\n							</a>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#FFFFFF\">Contact With Us</h3>\n                  <h2  style=\"color:#FFFFFF\">Let’s Work Together?</h2>\n				  <p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-1.png\">\n						<p>Have Any Question?</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"tel:+6568171978 \" style=\"color:#FFFFFF\">+ 65 6817 1978</a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/2-1.png\">\n						<p>Send Email</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"mailto:marketing@esi-asia.com \" style=\"color:#FFFFFF\">marketing@esi-asia.com </a>\n						</h2>\n					<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/3-1.png\">\n						<p>Address</p>\n						<h2 style=\"color:#FFFFFF\"><a href=\"\" style=\"color:#FFFFFF\">ESIGO Asia Pte Ltd 8 Ubi Road 2 #06-31 Zervex Singapore 408538</a>\n						</h2>\n                    <h2> Contact Us</h2>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6099-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6099\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6099-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Email\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Submit Now</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"209\"/></p>\n</form>\n			<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/contact_img_1.png\" alt=\"\">\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-11-08 03:43:39','2023-11-08 03:43:39','',17,'https://esigo.co/?p=7759',0,'revision','',0),(7760,1,'2023-11-08 03:43:39','2023-11-08 03:43:39','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-11-08 03:43:39','2023-11-08 03:43:39','',17,'https://esigo.co/?p=7760',0,'revision','',0),(7763,1,'2023-11-16 17:19:57','2023-11-16 09:19:57','<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Service-Based Operator (Class) Licence</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number                 CL000651</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status                                 Active</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Name                    Services-Based Operator (Class) Licence</p><p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">Service Code<br /></label></p><p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description                      Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date                          29 Aug 2023</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br />Operating Address             S(408538)</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency                               Info-communications Media Development Authority</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date                        29 Nov 2106</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company                           202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks                            8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023. </p><p> </p>','Business Licence','','publish','closed','closed','','business-licence','','','2023-11-17 15:17:41','2023-11-17 07:17:41','',0,'https://esigo.co/?page_id=7763',0,'page','',0),(7764,1,'2023-11-16 09:34:08','2023-11-16 01:34:08','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p>','Privacy Policy','','inherit','closed','closed','','7763-revision-v1','','','2023-11-16 09:34:08','2023-11-16 01:34:08','',7763,'https://esigo.co/?p=7764',0,'revision','',0),(7765,1,'2023-11-16 09:34:08','2023-11-16 01:34:08','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p>','Privacy Policy','','inherit','closed','closed','','7763-revision-v1','','','2023-11-16 09:34:08','2023-11-16 01:34:08','',7763,'https://esigo.co/?p=7765',0,'revision','',0),(7766,1,'2023-11-16 09:34:08','2023-11-16 01:34:08','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p>','Privacy Policy','','inherit','closed','closed','','7763-revision-v1','','','2023-11-16 09:34:08','2023-11-16 01:34:08','',7763,'https://esigo.co/?p=7766',0,'revision','',0),(7773,1,'2023-11-16 15:41:38','2023-11-16 07:41:38','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 15:41:38','2023-11-16 07:41:38','',7390,'https://esigo.co/?p=7773',0,'revision','',0),(7774,1,'2023-11-16 15:41:38','2023-11-16 07:41:38','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 15:41:38','2023-11-16 07:41:38','',7390,'https://esigo.co/?p=7774',0,'revision','',0),(7775,1,'2023-11-16 15:41:39','2023-11-16 07:41:39','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 15:41:39','2023-11-16 07:41:39','',7390,'https://esigo.co/?p=7775',0,'revision','',0),(7780,1,'2023-11-16 15:47:56','2023-11-16 07:47:56','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 15:47:56','2023-11-16 07:47:56','',7390,'https://esigo.co/?p=7780',0,'revision','',0),(7781,1,'2023-11-16 15:47:56','2023-11-16 07:47:56','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 15:47:56','2023-11-16 07:47:56','',7390,'https://esigo.co/?p=7781',0,'revision','',0),(7782,1,'2023-11-16 15:47:56','2023-11-16 07:47:56','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 15:47:56','2023-11-16 07:47:56','',7390,'https://esigo.co/?p=7782',0,'revision','',0),(7783,1,'2023-11-16 15:48:01','2023-11-16 07:48:01','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 15:48:01','2023-11-16 07:48:01','',7390,'https://esigo.co/?p=7783',0,'revision','',0),(7784,1,'2023-11-16 15:48:01','2023-11-16 07:48:01','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 15:48:01','2023-11-16 07:48:01','',7390,'https://esigo.co/?p=7784',0,'revision','',0),(7785,1,'2023-11-16 15:48:01','2023-11-16 07:48:01','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 15:48:01','2023-11-16 07:48:01','',7390,'https://esigo.co/?p=7785',0,'revision','',0),(7786,1,'2023-11-16 17:16:15','2023-11-16 09:16:15','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p>','Business License','','inherit','closed','closed','','7763-revision-v1','','','2023-11-16 17:16:15','2023-11-16 09:16:15','',7763,'https://esigo.co/?p=7786',0,'revision','',0),(7787,1,'2023-11-16 17:18:23','2023-11-16 09:18:23','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-16 17:18:23','2023-11-16 09:18:23','',6626,'https://esigo.co/?p=7787',0,'revision','',0),(7788,1,'2023-11-16 17:18:23','2023-11-16 09:18:23','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qbeyny63roiuo8dfj7zb23ti13oy8gga6sj0ji1yoa.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-16 17:18:23','2023-11-16 09:18:23','',6626,'https://esigo.co/?p=7788',0,'revision','',0),(7789,1,'2023-11-16 17:18:23','2023-11-16 09:18:23','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-license\">\n											Business License\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-16 17:18:23','2023-11-16 09:18:23','',6626,'https://esigo.co/?p=7789',0,'revision','',0),(7790,1,'2023-11-16 17:27:33','2023-11-16 09:27:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p>		\n			<a href=\"https://www.addevent.com/event/Kz19200440\">\n						RSVP\n					</a>\n		<p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','publish','closed','open','','hcmc-nov-23','','','2023-11-17 13:46:22','2023-11-17 05:46:22','',0,'https://esigo.co/?p=7790',0,'post','',0),(7791,1,'2023-11-16 17:27:32','2023-11-16 09:27:32','','Title test 1','','inherit','closed','closed','','7790-revision-v1','','','2023-11-16 17:27:32','2023-11-16 09:27:32','',7790,'https://esigo.co/?p=7791',0,'revision','',0),(7792,1,'2023-11-16 17:28:43','2023-11-16 09:28:43','','Title test 1','','inherit','closed','closed','','7790-revision-v1','','','2023-11-16 17:28:43','2023-11-16 09:28:43','',7790,'https://esigo.co/?p=7792',0,'revision','',0),(7793,1,'2023-11-16 17:28:43','2023-11-16 09:28:43','','Title test 1','','inherit','closed','closed','','7790-revision-v1','','','2023-11-16 17:28:43','2023-11-16 09:28:43','',7790,'https://esigo.co/?p=7793',0,'revision','',0),(7794,1,'2023-11-16 17:28:43','2023-11-16 09:28:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Title test 1','','inherit','closed','closed','','7790-revision-v1','','','2023-11-16 17:28:43','2023-11-16 09:28:43','',7790,'https://esigo.co/?p=7794',0,'revision','',0),(7795,1,'2023-11-16 17:31:15','2023-11-16 09:31:15','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 17:31:15','2023-11-16 09:31:15','',7390,'https://esigo.co/?p=7795',0,'revision','',0),(7796,1,'2023-11-16 17:31:15','2023-11-16 09:31:15','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 17:31:15','2023-11-16 09:31:15','',7390,'https://esigo.co/?p=7796',0,'revision','',0),(7797,1,'2023-11-16 17:31:15','2023-11-16 09:31:15','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-16 17:31:15','2023-11-16 09:31:15','',7390,'https://esigo.co/?p=7797',0,'revision','',0),(7798,1,'2023-11-16 17:38:24','2023-11-16 09:38:24','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-16 17:38:24','2023-11-16 09:38:24','',7763,'https://esigo.co/?p=7798',0,'revision','',0),(7800,1,'2023-11-16 17:42:22','2023-11-16 09:42:22','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-16 17:42:22','2023-11-16 09:42:22','',7763,'https://esigo.co/?p=7800',0,'revision','',0),(7801,1,'2023-11-16 17:42:22','2023-11-16 09:42:22','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-16 17:42:22','2023-11-16 09:42:22','',7763,'https://esigo.co/?p=7801',0,'revision','',0),(7802,1,'2023-11-16 17:42:22','2023-11-16 09:42:22','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name<br /><br />Service Code &amp; Description<br /></label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence<br /><br />Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-16 17:42:22','2023-11-16 09:42:22','',7763,'https://esigo.co/?p=7802',0,'revision','',0),(7803,1,'2023-11-16 17:45:01','2023-11-16 09:45:01','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-license\">\n											Business License\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-16 17:45:01','2023-11-16 09:45:01','',6626,'https://esigo.co/?p=7803',0,'revision','',0),(7804,1,'2023-11-16 17:45:01','2023-11-16 09:45:01','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-license\">\n											Business License\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-16 17:45:01','2023-11-16 09:45:01','',6626,'https://esigo.co/?p=7804',0,'revision','',0),(7805,1,'2023-11-16 17:45:01','2023-11-16 09:45:01','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-license\">\n											Business Licence\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-16 17:45:01','2023-11-16 09:45:01','',6626,'https://esigo.co/?p=7805',0,'revision','',0),(7806,1,'2023-11-16 17:46:31','2023-11-16 09:46:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-license\">\n											Business Licence\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-16 17:46:31','2023-11-16 09:46:31','',6626,'https://esigo.co/?p=7806',0,'revision','',0),(7807,1,'2023-11-16 17:46:31','2023-11-16 09:46:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-license\">\n											Business Licence\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-16 17:46:31','2023-11-16 09:46:31','',6626,'https://esigo.co/?p=7807',0,'revision','',0),(7808,1,'2023-11-16 17:46:32','2023-11-16 09:46:32','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-licence\">\n											Business Licence\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-16 17:46:32','2023-11-16 09:46:32','',6626,'https://esigo.co/?p=7808',0,'revision','',0),(7810,1,'2023-11-17 10:00:37','2023-11-17 02:00:37','','Hybrid Workforce_Experiences_mock-8','','inherit','open','closed','','hybrid-workforce_experiences_mock-8','','','2023-11-17 10:00:37','2023-11-17 02:00:37','',7790,'https://esigo.co/wp-content/uploads/2023/11/Hybrid-Workforce_Experiences_mock-8.jpg',0,'attachment','image/jpeg',0),(7811,1,'2023-11-17 10:04:42','2023-11-17 02:04:42','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:04:42','2023-11-17 02:04:42','',7790,'https://esigo.co/?p=7811',0,'revision','',0),(7812,1,'2023-11-17 10:06:56','2023-11-17 02:06:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:06:56','2023-11-17 02:06:56','',7790,'https://esigo.co/?p=7812',0,'revision','',0),(7813,1,'2023-11-17 10:06:56','2023-11-17 02:06:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:06:56','2023-11-17 02:06:56','',7790,'https://esigo.co/?p=7813',0,'revision','',0),(7814,1,'2023-11-17 10:06:56','2023-11-17 02:06:56','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p> </p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p> </p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p><br />It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p> </p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p><br />Learn just how powerful the Zoom solution is.</p><p> </p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p> </p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />                 3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p> </p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p> </p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p> </p><p> </p><p> </p><p> </p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p><p> </p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:06:56','2023-11-17 02:06:56','',7790,'https://esigo.co/?p=7814',0,'revision','',0),(7815,1,'2023-11-17 10:09:34','2023-11-17 02:09:34','','Le Meridien Saigon','','inherit','open','closed','','le-meridien-saigon','','','2023-11-17 10:09:34','2023-11-17 02:09:34','',7790,'https://esigo.co/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg',0,'attachment','image/jpeg',0),(7816,1,'2023-11-17 10:11:19','2023-11-17 02:11:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p> </p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p> </p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p><br />It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p> </p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p><br />Learn just how powerful the Zoom solution is.</p><p> </p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p> </p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />                 3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p> </p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p> </p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p> </p><p> </p><p> </p><p> </p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p><p> </p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:11:19','2023-11-17 02:11:19','',7790,'https://esigo.co/?p=7816',0,'revision','',0),(7817,1,'2023-11-17 10:11:19','2023-11-17 02:11:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p> </p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p> </p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p><br />It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p> </p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p><br />Learn just how powerful the Zoom solution is.</p><p> </p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p> </p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />                 3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p> </p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p> </p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p> </p><p> </p><p> </p><p> </p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p><p> </p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:11:19','2023-11-17 02:11:19','',7790,'https://esigo.co/?p=7817',0,'revision','',0),(7818,1,'2023-11-17 10:11:19','2023-11-17 02:11:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />                 3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh,                   Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:11:19','2023-11-17 02:11:19','',7790,'https://esigo.co/?p=7818',0,'revision','',0),(7819,1,'2023-11-17 10:13:08','2023-11-17 02:13:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />                 3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh,                   Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:13:08','2023-11-17 02:13:08','',7790,'https://esigo.co/?p=7819',0,'revision','',0),(7820,1,'2023-11-17 10:13:08','2023-11-17 02:13:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />                 3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh,                   Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:13:08','2023-11-17 02:13:08','',7790,'https://esigo.co/?p=7820',0,'revision','',0),(7821,1,'2023-11-17 10:13:08','2023-11-17 02:13:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />                 3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh,                       Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:13:08','2023-11-17 02:13:08','',7790,'https://esigo.co/?p=7821',0,'revision','',0),(7823,1,'2023-11-17 10:20:38','2023-11-17 02:20:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />                 3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh,                       Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:20:38','2023-11-17 02:20:38','',7790,'https://esigo.co/?p=7823',0,'revision','',0),(7824,1,'2023-11-17 10:20:38','2023-11-17 02:20:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />                 3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh,                       Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:20:38','2023-11-17 02:20:38','',7790,'https://esigo.co/?p=7824',0,'revision','',0),(7825,1,'2023-11-17 10:20:38','2023-11-17 02:20:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh,                       Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:20:38','2023-11-17 02:20:38','',7790,'https://esigo.co/?p=7825',0,'revision','',0),(7826,1,'2023-11-17 10:21:49','2023-11-17 02:21:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh,                       Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:21:49','2023-11-17 02:21:49','',7790,'https://esigo.co/?p=7826',0,'revision','',0),(7827,1,'2023-11-17 10:21:50','2023-11-17 02:21:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh,                       Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:21:50','2023-11-17 02:21:50','',7790,'https://esigo.co/?p=7827',0,'revision','',0),(7828,1,'2023-11-17 10:21:50','2023-11-17 02:21:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:21:50','2023-11-17 02:21:50','',7790,'https://esigo.co/?p=7828',0,'revision','',0),(7829,1,'2023-11-17 10:24:40','2023-11-17 02:24:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:24:40','2023-11-17 02:24:40','',7790,'https://esigo.co/?p=7829',0,'revision','',0),(7830,1,'2023-11-17 10:24:40','2023-11-17 02:24:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:24:40','2023-11-17 02:24:40','',7790,'https://esigo.co/?p=7830',0,'revision','',0),(7831,1,'2023-11-17 10:24:40','2023-11-17 02:24:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>             Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:24:40','2023-11-17 02:24:40','',7790,'https://esigo.co/?p=7831',0,'revision','',0),(7832,1,'2023-11-17 10:24:54','2023-11-17 02:24:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>             Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:24:54','2023-11-17 02:24:54','',7790,'https://esigo.co/?p=7832',0,'revision','',0),(7833,1,'2023-11-17 10:24:54','2023-11-17 02:24:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>             Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:24:54','2023-11-17 02:24:54','',7790,'https://esigo.co/?p=7833',0,'revision','',0),(7834,1,'2023-11-17 10:24:54','2023-11-17 02:24:54','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:24:54','2023-11-17 02:24:54','',7790,'https://esigo.co/?p=7834',0,'revision','',0),(7835,1,'2023-11-17 10:25:17','2023-11-17 02:25:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:25:17','2023-11-17 02:25:17','',7790,'https://esigo.co/?p=7835',0,'revision','',0),(7836,1,'2023-11-17 10:25:17','2023-11-17 02:25:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:25:17','2023-11-17 02:25:17','',7790,'https://esigo.co/?p=7836',0,'revision','',0),(7837,1,'2023-11-17 10:25:17','2023-11-17 02:25:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng                     quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:25:17','2023-11-17 02:25:17','',7790,'https://esigo.co/?p=7837',0,'revision','',0),(7838,1,'2023-11-17 10:25:38','2023-11-17 02:25:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng                     quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:25:38','2023-11-17 02:25:38','',7790,'https://esigo.co/?p=7838',0,'revision','',0),(7839,1,'2023-11-17 10:25:38','2023-11-17 02:25:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng                     quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:25:38','2023-11-17 02:25:38','',7790,'https://esigo.co/?p=7839',0,'revision','',0),(7840,1,'2023-11-17 10:25:38','2023-11-17 02:25:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng                     </p><p>quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:25:38','2023-11-17 02:25:38','',7790,'https://esigo.co/?p=7840',0,'revision','',0),(7841,1,'2023-11-17 10:26:10','2023-11-17 02:26:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng                     </p><p>quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:26:10','2023-11-17 02:26:10','',7790,'https://esigo.co/?p=7841',0,'revision','',0),(7842,1,'2023-11-17 10:26:10','2023-11-17 02:26:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng                     </p><p>quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:26:10','2023-11-17 02:26:10','',7790,'https://esigo.co/?p=7842',0,'revision','',0),(7843,1,'2023-11-17 10:26:10','2023-11-17 02:26:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu</p><p>tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:26:10','2023-11-17 02:26:10','',7790,'https://esigo.co/?p=7843',0,'revision','',0),(7844,1,'2023-11-17 10:26:36','2023-11-17 02:26:36','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu</p><p>tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:26:36','2023-11-17 02:26:36','',7790,'https://esigo.co/?p=7844',0,'revision','',0),(7845,1,'2023-11-17 10:26:37','2023-11-17 02:26:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu</p><p>tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:26:37','2023-11-17 02:26:37','',7790,'https://esigo.co/?p=7845',0,'revision','',0),(7846,1,'2023-11-17 10:26:37','2023-11-17 02:26:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:26:37','2023-11-17 02:26:37','',7790,'https://esigo.co/?p=7846',0,'revision','',0),(7848,1,'2023-11-17 10:54:26','2023-11-17 02:54:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:54:26','2023-11-17 02:54:26','',7790,'https://esigo.co/?p=7848',0,'revision','',0),(7849,1,'2023-11-17 10:54:26','2023-11-17 02:54:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p><strong>8.30AM</strong>              Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p><strong>9.15AM</strong>              Introduction / Giới thiệu</p><p><strong>9.20AM</strong>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p><strong>9.30AM</strong>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p><strong>10.00AM</strong>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p><strong>10.30AM</strong>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p><strong>10.45AM</strong>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p><strong>11.30AM</strong>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p><strong>12.00PM</strong>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:54:26','2023-11-17 02:54:26','',7790,'https://esigo.co/?p=7849',0,'revision','',0),(7850,1,'2023-11-17 10:54:26','2023-11-17 02:54:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p><p><strong>8.30AM</strong>  </p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">9.15AM</strong>  </p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">9.20AM</strong>              </p><p><strong>9.30AM</strong>              </p><p><strong>10.00AM</strong></p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\"><br />10.30AM</strong>        </p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\"> <br /></strong><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">10.45AM</strong>  <br /></p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">11.30AM</strong>            </p><p><strong>12.00PM</strong>            </p><p>Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p>Introduction / Giới thiệu</p><p>Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ tịch Christopher Yap</p><p>Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p>Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p>Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p>Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p>Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p>Lunch / Ăn trưa</p><p> </p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 10:54:26','2023-11-17 02:54:26','',7790,'https://esigo.co/?p=7850',0,'revision','',0),(7852,1,'2023-11-17 11:24:13','2023-11-17 03:24:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p><p><strong>8.30AM</strong>  </p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">9.15AM</strong>  </p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">9.20AM</strong>              </p><p><strong>9.30AM</strong>              </p><p><strong>10.00AM</strong></p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\"><br />10.30AM</strong>        </p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\"> <br /></strong><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">10.45AM</strong>  <br /></p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">11.30AM</strong>            </p><p><strong>12.00PM</strong>            </p><p>Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p>Introduction / Giới thiệu</p><p>Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ tịch Christopher Yap</p><p>Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p>Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p>Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p>Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p>Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p>Lunch / Ăn trưa</p><p> </p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 11:24:13','2023-11-17 03:24:13','',7790,'https://esigo.co/?p=7852',0,'revision','',0),(7853,1,'2023-11-17 11:24:13','2023-11-17 03:24:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p><strong>ESIGO</strong></p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p><strong>Zoom</strong></p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p><p><strong>8.30AM</strong>  </p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">9.15AM</strong>  </p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">9.20AM</strong>              </p><p><strong>9.30AM</strong>              </p><p><strong>10.00AM</strong></p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\"><br />10.30AM</strong>        </p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\"> <br /></strong><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">10.45AM</strong>  <br /></p><p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">11.30AM</strong>            </p><p><strong>12.00PM</strong>            </p><p>Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p>Introduction / Giới thiệu</p><p>Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ tịch Christopher Yap</p><p>Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p>Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p>Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p>Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p>Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p>Lunch / Ăn trưa</p><p> </p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 11:24:13','2023-11-17 03:24:13','',7790,'https://esigo.co/?p=7853',0,'revision','',0),(7854,1,'2023-11-17 11:24:13','2023-11-17 03:24:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM</p><p><br />10.00AM</p><p><br />10.30AM</p><p><br /><br />10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 11:24:13','2023-11-17 03:24:13','',7790,'https://esigo.co/?p=7854',0,'revision','',0),(7855,1,'2023-11-17 13:08:16','2023-11-17 05:08:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM</p><p><br />10.00AM</p><p><br />10.30AM</p><p><br /><br />10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:08:16','2023-11-17 05:08:16','',7790,'https://esigo.co/?p=7855',0,'revision','',0),(7856,1,'2023-11-17 13:08:16','2023-11-17 05:08:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM</p><p><br />10.00AM</p><p><br />10.30AM</p><p><br /><br />10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:08:16','2023-11-17 05:08:16','',7790,'https://esigo.co/?p=7856',0,'revision','',0),(7857,1,'2023-11-17 13:08:16','2023-11-17 05:08:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p>\n<p>9.15AM<br></p>\n<p>9.20AM</p>\n<p><br>9.30AM</p>\n<p><br>10.00AM10.30AM</p>\n<p>10.45AM</p>\n<p>11.30AM</p>\n<p><br>12.00PM</p>\n<p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:08:16','2023-11-17 05:08:16','',7790,'https://esigo.co/?p=7857',0,'revision','',0),(7858,1,'2023-11-17 13:08:57','2023-11-17 05:08:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p>\n<p>9.15AM<br></p>\n<p>9.20AM</p>\n<p><br>9.30AM</p>\n<p><br>10.00AM10.30AM</p>\n<p>10.45AM</p>\n<p>11.30AM</p>\n<p><br>12.00PM</p>\n<p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:08:57','2023-11-17 05:08:57','',7790,'https://esigo.co/?p=7858',0,'revision','',0),(7859,1,'2023-11-17 13:08:57','2023-11-17 05:08:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p>\n<p>9.15AM<br></p>\n<p>9.20AM</p>\n<p><br>9.30AM</p>\n<p><br>10.00AM10.30AM</p>\n<p>10.45AM</p>\n<p>11.30AM</p>\n<p><br>12.00PM</p>\n<p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:08:57','2023-11-17 05:08:57','',7790,'https://esigo.co/?p=7859',0,'revision','',0),(7860,1,'2023-11-17 13:08:57','2023-11-17 05:08:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p>\n<p>9.15AM<br></p>\n<p>9.20AM</p>\n<p><br>9.30AM</p>\n<p><br>10.00AM</p><p><br>10.30AM<br></p>\n<p><br><br>10.45AM<br></p>\n<p>11.30AM</p>\n<p><br>12.00PM</p>\n<p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:08:57','2023-11-17 05:08:57','',7790,'https://esigo.co/?p=7860',0,'revision','',0),(7861,1,'2023-11-17 13:09:31','2023-11-17 05:09:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p>\n<p>9.15AM<br></p>\n<p>9.20AM</p>\n<p><br>9.30AM</p>\n<p><br>10.00AM</p><p><br>10.30AM<br></p>\n<p><br><br>10.45AM<br></p>\n<p>11.30AM</p>\n<p><br>12.00PM</p>\n<p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:09:31','2023-11-17 05:09:31','',7790,'https://esigo.co/?p=7861',0,'revision','',0),(7862,1,'2023-11-17 13:09:31','2023-11-17 05:09:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p>\n<p>9.15AM<br></p>\n<p>9.20AM</p>\n<p><br>9.30AM</p>\n<p><br>10.00AM</p><p><br>10.30AM<br></p>\n<p><br><br>10.45AM<br></p>\n<p>11.30AM</p>\n<p><br>12.00PM</p>\n<p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:09:31','2023-11-17 05:09:31','',7790,'https://esigo.co/?p=7862',0,'revision','',0),(7863,1,'2023-11-17 13:09:31','2023-11-17 05:09:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM</p><p>10.00AM</p><p><br />10.30AM</p><p><br /><br />10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:09:31','2023-11-17 05:09:31','',7790,'https://esigo.co/?p=7863',0,'revision','',0),(7864,1,'2023-11-17 13:09:57','2023-11-17 05:09:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM</p><p>10.00AM</p><p><br />10.30AM</p><p><br /><br />10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:09:57','2023-11-17 05:09:57','',7790,'https://esigo.co/?p=7864',0,'revision','',0),(7865,1,'2023-11-17 13:09:57','2023-11-17 05:09:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM</p><p>10.00AM</p><p><br />10.30AM</p><p><br /><br />10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:09:57','2023-11-17 05:09:57','',7790,'https://esigo.co/?p=7865',0,'revision','',0),(7866,1,'2023-11-17 13:09:57','2023-11-17 05:09:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM<br />10.00AM</p><p><br />10.30AM</p><p><br /><br />10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:09:57','2023-11-17 05:09:57','',7790,'https://esigo.co/?p=7866',0,'revision','',0),(7867,1,'2023-11-17 13:10:21','2023-11-17 05:10:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM<br />10.00AM</p><p><br />10.30AM</p><p><br /><br />10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:10:21','2023-11-17 05:10:21','',7790,'https://esigo.co/?p=7867',0,'revision','',0),(7868,1,'2023-11-17 13:10:21','2023-11-17 05:10:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM<br />10.00AM</p><p><br />10.30AM</p><p><br /><br />10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:10:21','2023-11-17 05:10:21','',7790,'https://esigo.co/?p=7868',0,'revision','',0),(7869,1,'2023-11-17 13:10:21','2023-11-17 05:10:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p>\n<p>9.15AM<br></p>\n<p>9.20AM</p>\n<p><br>9.30AM<br>10.00AM</p>\n<p><br><br>10.30AM</p>\n<p></p>\n<p>10.45AM</p>\n<p>11.30AM</p>\n<p><br>12.00PM</p>\n<p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:10:21','2023-11-17 05:10:21','',7790,'https://esigo.co/?p=7869',0,'revision','',0),(7870,1,'2023-11-17 13:11:30','2023-11-17 05:11:30','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p>\n<p>9.15AM<br></p>\n<p>9.20AM</p>\n<p><br>9.30AM<br>10.00AM</p>\n<p><br><br>10.30AM</p>\n<p></p>\n<p>10.45AM</p>\n<p>11.30AM</p>\n<p><br>12.00PM</p>\n<p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:11:30','2023-11-17 05:11:30','',7790,'https://esigo.co/?p=7870',0,'revision','',0),(7871,1,'2023-11-17 13:11:31','2023-11-17 05:11:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p> </p><p> </p><p>8.30AM</p>\n<p>9.15AM<br></p>\n<p>9.20AM</p>\n<p><br>9.30AM<br>10.00AM</p>\n<p><br><br>10.30AM</p>\n<p></p>\n<p>10.45AM</p>\n<p>11.30AM</p>\n<p><br>12.00PM</p>\n<p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:11:31','2023-11-17 05:11:31','',7790,'https://esigo.co/?p=7871',0,'revision','',0),(7872,1,'2023-11-17 13:11:31','2023-11-17 05:11:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nRegistration and Breakfast / Đăng ký và điểm tâm nhẹ.<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nIntroduction / Giới thiệu<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nOverview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan&nbsp;ESIGO\nAsia – Chủ&nbsp;&nbsp; tịch&nbsp;Christopher Yap<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nHarmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nLive Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nOverview ESIGO VN architecture and managed services / Tổng quan cấu trúc&nbsp;ESIGO\nVN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nShowcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of\ndoor gifts and lucky draw /&nbsp;Nhận quà tặng và quay phần thưởng<o:p></o:p></p><p>\n</p><p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch\n/&nbsp;Ăn trưa<o:p></o:p></p>\n<p></p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM<br />10.00AM</p><p><br /><br />10.30AM</p><p> </p><p>10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:11:31','2023-11-17 05:11:31','',7790,'https://esigo.co/?p=7872',0,'revision','',0),(7873,1,'2023-11-17 13:12:38','2023-11-17 05:12:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nRegistration and Breakfast / Đăng ký và điểm tâm nhẹ.<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nIntroduction / Giới thiệu<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nOverview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan&nbsp;ESIGO\nAsia – Chủ&nbsp;&nbsp; tịch&nbsp;Christopher Yap<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nHarmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nLive Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nOverview ESIGO VN architecture and managed services / Tổng quan cấu trúc&nbsp;ESIGO\nVN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nShowcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of\ndoor gifts and lucky draw /&nbsp;Nhận quà tặng và quay phần thưởng<o:p></o:p></p><p>\n</p><p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch\n/&nbsp;Ăn trưa<o:p></o:p></p>\n<p></p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM<br />10.00AM</p><p><br /><br />10.30AM</p><p> </p><p>10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:12:38','2023-11-17 05:12:38','',7790,'https://esigo.co/?p=7873',0,'revision','',0),(7874,1,'2023-11-17 13:12:39','2023-11-17 05:12:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nRegistration and Breakfast / Đăng ký và điểm tâm nhẹ.<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nIntroduction / Giới thiệu<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nOverview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan&nbsp;ESIGO\nAsia – Chủ&nbsp;&nbsp; tịch&nbsp;Christopher Yap<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nHarmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nLive Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nOverview ESIGO VN architecture and managed services / Tổng quan cấu trúc&nbsp;ESIGO\nVN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\nShowcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.<o:p></o:p></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of\ndoor gifts and lucky draw /&nbsp;Nhận quà tặng và quay phần thưởng<o:p></o:p></p><p>\n</p><p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch\n/&nbsp;Ăn trưa<o:p></o:p></p>\n<p></p><p>8.30AM</p><p>9.15AM<br /></p><p>9.20AM</p><p><br />9.30AM<br />10.00AM</p><p><br /><br />10.30AM</p><p> </p><p>10.45AM</p><p>11.30AM</p><p><br />12.00PM</p><p> </p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:12:39','2023-11-17 05:12:39','',7790,'https://esigo.co/?p=7874',0,'revision','',0),(7875,1,'2023-11-17 13:12:39','2023-11-17 05:12:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:12:39','2023-11-17 05:12:39','',7790,'https://esigo.co/?p=7875',0,'revision','',0),(7876,1,'2023-11-17 13:13:30','2023-11-17 05:13:30','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:13:30','2023-11-17 05:13:30','',7790,'https://esigo.co/?p=7876',0,'revision','',0),(7877,1,'2023-11-17 13:13:30','2023-11-17 05:13:30','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:13:30','2023-11-17 05:13:30','',7790,'https://esigo.co/?p=7877',0,'revision','',0),(7878,1,'2023-11-17 13:13:30','2023-11-17 05:13:30','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                  tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:13:30','2023-11-17 05:13:30','',7790,'https://esigo.co/?p=7878',0,'revision','',0),(7879,1,'2023-11-17 13:13:50','2023-11-17 05:13:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                  tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:13:50','2023-11-17 05:13:50','',7790,'https://esigo.co/?p=7879',0,'revision','',0),(7880,1,'2023-11-17 13:13:50','2023-11-17 05:13:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                  tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:13:50','2023-11-17 05:13:50','',7790,'https://esigo.co/?p=7880',0,'revision','',0),(7881,1,'2023-11-17 13:13:50','2023-11-17 05:13:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                         tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:13:50','2023-11-17 05:13:50','',7790,'https://esigo.co/?p=7881',0,'revision','',0),(7882,1,'2023-11-17 13:14:09','2023-11-17 05:14:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                         tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:14:09','2023-11-17 05:14:09','',7790,'https://esigo.co/?p=7882',0,'revision','',0),(7883,1,'2023-11-17 13:14:09','2023-11-17 05:14:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                         tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:14:09','2023-11-17 05:14:09','',7790,'https://esigo.co/?p=7883',0,'revision','',0),(7884,1,'2023-11-17 13:14:09','2023-11-17 05:14:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:14:09','2023-11-17 05:14:09','',7790,'https://esigo.co/?p=7884',0,'revision','',0),(7885,1,'2023-11-17 13:14:29','2023-11-17 05:14:29','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:14:29','2023-11-17 05:14:29','',7790,'https://esigo.co/?p=7885',0,'revision','',0),(7886,1,'2023-11-17 13:14:29','2023-11-17 05:14:29','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:14:29','2023-11-17 05:14:29','',7790,'https://esigo.co/?p=7886',0,'revision','',0),(7887,1,'2023-11-17 13:14:29','2023-11-17 05:14:29','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:14:29','2023-11-17 05:14:29','',7790,'https://esigo.co/?p=7887',0,'revision','',0),(7888,1,'2023-11-17 13:15:04','2023-11-17 05:15:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:15:04','2023-11-17 05:15:04','',7790,'https://esigo.co/?p=7888',0,'revision','',0),(7889,1,'2023-11-17 13:15:04','2023-11-17 05:15:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:15:04','2023-11-17 05:15:04','',7790,'https://esigo.co/?p=7889',0,'revision','',0),(7890,1,'2023-11-17 13:15:04','2023-11-17 05:15:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:15:04','2023-11-17 05:15:04','',7790,'https://esigo.co/?p=7890',0,'revision','',0),(7891,1,'2023-11-17 13:15:43','2023-11-17 05:15:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:15:43','2023-11-17 05:15:43','',7790,'https://esigo.co/?p=7891',0,'revision','',0),(7892,1,'2023-11-17 13:15:43','2023-11-17 05:15:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:15:43','2023-11-17 05:15:43','',7790,'https://esigo.co/?p=7892',0,'revision','',0),(7893,1,'2023-11-17 13:15:43','2023-11-17 05:15:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ              quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                 thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:15:43','2023-11-17 05:15:43','',7790,'https://esigo.co/?p=7893',0,'revision','',0),(7894,1,'2023-11-17 13:16:04','2023-11-17 05:16:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ              quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                 thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:16:04','2023-11-17 05:16:04','',7790,'https://esigo.co/?p=7894',0,'revision','',0),(7895,1,'2023-11-17 13:16:04','2023-11-17 05:16:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ              quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                 thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:16:04','2023-11-17 05:16:04','',7790,'https://esigo.co/?p=7895',0,'revision','',0),(7896,1,'2023-11-17 13:16:04','2023-11-17 05:16:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                          quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                              thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:16:04','2023-11-17 05:16:04','',7790,'https://esigo.co/?p=7896',0,'revision','',0),(7897,1,'2023-11-17 13:16:28','2023-11-17 05:16:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                          quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                              thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:16:28','2023-11-17 05:16:28','',7790,'https://esigo.co/?p=7897',0,'revision','',0),(7898,1,'2023-11-17 13:16:28','2023-11-17 05:16:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                          quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                              thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:16:28','2023-11-17 05:16:28','',7790,'https://esigo.co/?p=7898',0,'revision','',0),(7899,1,'2023-11-17 13:16:28','2023-11-17 05:16:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                         quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                         thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:16:28','2023-11-17 05:16:28','',7790,'https://esigo.co/?p=7899',0,'revision','',0),(7900,1,'2023-11-17 13:16:58','2023-11-17 05:16:58','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                         quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                         thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:16:58','2023-11-17 05:16:58','',7790,'https://esigo.co/?p=7900',0,'revision','',0),(7901,1,'2023-11-17 13:16:58','2023-11-17 05:16:58','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                         quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                         thưởng</p><p> </p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:16:58','2023-11-17 05:16:58','',7790,'https://esigo.co/?p=7901',0,'revision','',0),(7902,1,'2023-11-17 13:16:58','2023-11-17 05:16:58','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                      quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                      thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:16:58','2023-11-17 05:16:58','',7790,'https://esigo.co/?p=7902',0,'revision','',0),(7903,1,'2023-11-17 13:17:16','2023-11-17 05:17:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                      quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                      thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:17:16','2023-11-17 05:17:16','',7790,'https://esigo.co/?p=7903',0,'revision','',0),(7904,1,'2023-11-17 13:17:16','2023-11-17 05:17:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                      quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                      thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:17:16','2023-11-17 05:17:16','',7790,'https://esigo.co/?p=7904',0,'revision','',0),(7905,1,'2023-11-17 13:17:16','2023-11-17 05:17:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:17:16','2023-11-17 05:17:16','',7790,'https://esigo.co/?p=7905',0,'revision','',0),(7906,1,'2023-11-17 13:19:07','2023-11-17 05:19:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:19:07','2023-11-17 05:19:07','',7790,'https://esigo.co/?p=7906',0,'revision','',0),(7907,1,'2023-11-17 13:19:07','2023-11-17 05:19:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p> </p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:19:07','2023-11-17 05:19:07','',7790,'https://esigo.co/?p=7907',0,'revision','',0),(7908,1,'2023-11-17 13:19:08','2023-11-17 05:19:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:19:08','2023-11-17 05:19:08','',7790,'https://esigo.co/?p=7908',0,'revision','',0),(7909,1,'2023-11-17 13:24:00','2023-11-17 05:24:00','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:24:00','2023-11-17 05:24:00','',7790,'https://esigo.co/?p=7909',0,'revision','',0),(7910,1,'2023-11-17 13:24:01','2023-11-17 05:24:01','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:24:01','2023-11-17 05:24:01','',7790,'https://esigo.co/?p=7910',0,'revision','',0),(7911,1,'2023-11-17 13:24:01','2023-11-17 05:24:01','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>		\n															<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:24:01','2023-11-17 05:24:01','',7790,'https://esigo.co/?p=7911',0,'revision','',0),(7914,1,'2023-11-17 13:33:27','2023-11-17 05:33:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>		\n															<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:33:27','2023-11-17 05:33:27','',7790,'https://esigo.co/?p=7914',0,'revision','',0),(7915,1,'2023-11-17 13:33:27','2023-11-17 05:33:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>		\n															<img src=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:33:27','2023-11-17 05:33:27','',7790,'https://esigo.co/?p=7915',0,'revision','',0),(7916,1,'2023-11-17 13:33:27','2023-11-17 05:33:27','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>		\n															<img width=\"118\" height=\"44\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Picture1.png\" alt=\"\" loading=\"lazy\" />','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:33:27','2023-11-17 05:33:27','',7790,'https://esigo.co/?p=7916',0,'revision','',0),(7917,1,'2023-11-17 13:33:45','2023-11-17 05:33:45','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>		\n															<img width=\"118\" height=\"44\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Picture1.png\" alt=\"\" loading=\"lazy\" />','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:33:45','2023-11-17 05:33:45','',7790,'https://esigo.co/?p=7917',0,'revision','',0),(7918,1,'2023-11-17 13:33:45','2023-11-17 05:33:45','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>		\n															<img width=\"118\" height=\"44\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Picture1.png\" alt=\"\" loading=\"lazy\" />','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:33:45','2023-11-17 05:33:45','',7790,'https://esigo.co/?p=7918',0,'revision','',0),(7919,1,'2023-11-17 13:33:45','2023-11-17 05:33:45','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>		\n															<img width=\"118\" height=\"44\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Picture1.png\" alt=\"\" loading=\"lazy\" />','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:33:45','2023-11-17 05:33:45','',7790,'https://esigo.co/?p=7919',0,'revision','',0),(7920,1,'2023-11-17 13:35:30','2023-11-17 05:35:30','','Picture1','','inherit','open','closed','','picture1','','','2023-11-17 13:35:30','2023-11-17 05:35:30','',7790,'https://esigo.co/wp-content/uploads/2023/11/Picture1.png',0,'attachment','image/png',0),(7922,1,'2023-11-17 13:44:39','2023-11-17 05:44:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>		\n															<img width=\"118\" height=\"44\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Picture1.png\" alt=\"\" loading=\"lazy\" />','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:44:39','2023-11-17 05:44:39','',7790,'https://esigo.co/?p=7922',0,'revision','',0),(7923,1,'2023-11-17 13:44:39','2023-11-17 05:44:39','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p>\n<p>Có thể bạn đã biết về&nbsp;Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng&nbsp;Zoom còn có nhiều giải pháp để khám phá.</p>\n<p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p>\n<p>Nền tảng&nbsp;Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện&nbsp;ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p>\n<p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p>\n<p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách&nbsp;an toàn và đáng&nbsp;tin cậy, đồng thời quản lý tất cả từ một nơi bằng&nbsp;video, giọng nói, chia sẻ nội&nbsp;dung và trò chuyện. Tất cả chạy trên các thiết bị&nbsp;di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p>\n<p>Learn just how powerful the Zoom solution is.</p>\n<p>Hãy cùng tìm hiểu về những giải pháp&nbsp;Zoom!</p>\n<p><strong>Date:</strong>&nbsp;29 November 2023 (Wednesday)<br><strong>Location:</strong>&nbsp;Le Méridien Saigon<br>3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p>\n<p><strong>Agenda / Nội&nbsp;dung</strong></p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Introduction / Giới thiệu</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO Asia – President Christopher Yap / Giới thiệu&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tổng quan ESIGO Asia – Chủ&nbsp;&nbsp; tịch Christopher Yap</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Harmonizing Work and Life by Zoom / Trình bày từ&nbsp;Zoom về giải pháp</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với&nbsp;Zoom</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Overview ESIGO VN architecture and managed services / Tổng&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quản lý.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Showcasing and Networking / Trưng bày sản phẩm và&nbsp;ăn nhẹ.</p>\n<p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Collection of door gifts and lucky draw / Nhận quà tặng và quay phần&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thưởng</p>\n<p><b>12.00PM</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lunch /&nbsp;Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>\n<p></p>		\n															<img width=\"118\" height=\"44\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Picture1.png\" alt=\"\" loading=\"lazy\" />','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:44:39','2023-11-17 05:44:39','',7790,'https://esigo.co/?p=7923',0,'revision','',0),(7924,1,'2023-11-17 13:44:40','2023-11-17 05:44:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p> </p><p> </p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p><p> </p>		\n			<a href=\"https://www.addevent.com/event/Kz19200440\">\n						RSVP\n					</a>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:44:40','2023-11-17 05:44:40','',7790,'https://esigo.co/?p=7924',0,'revision','',0),(7925,1,'2023-11-17 13:45:33','2023-11-17 05:45:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p> </p><p> </p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p><p> </p>		\n			<a href=\"https://www.addevent.com/event/Kz19200440\">\n						RSVP\n					</a>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:45:33','2023-11-17 05:45:33','',7790,'https://esigo.co/?p=7925',0,'revision','',0),(7926,1,'2023-11-17 13:45:33','2023-11-17 05:45:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p> </p><p> </p><p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p><p> </p>		\n			<a href=\"https://www.addevent.com/event/Kz19200440\">\n						RSVP\n					</a>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:45:33','2023-11-17 05:45:33','',7790,'https://esigo.co/?p=7926',0,'revision','',0),(7927,1,'2023-11-17 13:45:33','2023-11-17 05:45:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p> </p>		\n			<a href=\"https://www.addevent.com/event/Kz19200440\">\n						RSVP\n					</a>\n		<p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:45:33','2023-11-17 05:45:33','',7790,'https://esigo.co/?p=7927',0,'revision','',0),(7928,1,'2023-11-17 13:46:22','2023-11-17 05:46:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p> </p>		\n			<a href=\"https://www.addevent.com/event/Kz19200440\">\n						RSVP\n					</a>\n		<p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:46:22','2023-11-17 05:46:22','',7790,'https://esigo.co/?p=7928',0,'revision','',0),(7929,1,'2023-11-17 13:46:22','2023-11-17 05:46:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p><p> </p>		\n			<a href=\"https://www.addevent.com/event/Kz19200440\">\n						RSVP\n					</a>\n		<p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:46:22','2023-11-17 05:46:22','',7790,'https://esigo.co/?p=7929',0,'revision','',0),(7930,1,'2023-11-17 13:46:22','2023-11-17 05:46:22','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"640\" height=\"426\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-1024x682.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/11/Le-Meridien-Saigon.jpg 1336w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n		<p>You’ve probably heard of Zoom for meetings, but there\'s a whole lot more Zoom to discover.</p><p>Có thể bạn đã biết về Zoom là giải pháp hàng đầu cho việc họp trực tuyến, nhưng Zoom còn có nhiều giải pháp để khám phá.</p><p>Their powerful platform can help you launch smarter team collaboration, express ideas, reach new audiences, and power modern workflows so you can get more done together.</p><p>Nền tảng Zoom có thể giúp bạn hoạt động việc cộng tác nhóm thông minh hơn, thể hiện ý tưởng, tiếp cận khách hàng mới và hỗ trợ quy trình làm việc hiện đại để các bạn có thể cùng nhau làm được nhiều việc hơn.</p><p>It’s time to enable your organization to scale on-demand, securely and reliably, and manage it all from one place with video, voice, content sharing, and chat that runs across mobile devices, desktops, telephones, and room systems.</p><p>Đã đến lúc doanh nghiệp bạn mở rộng quy mô một cách an toàn và đáng tin cậy, đồng thời quản lý tất cả từ một nơi bằng video, giọng nói, chia sẻ nội dung và trò chuyện. Tất cả chạy trên các thiết bị di động, máy tính để bàn, điện thoại và hệ thống phòng họp.</p><p>Learn just how powerful the Zoom solution is.</p><p>Hãy cùng tìm hiểu về những giải pháp Zoom!</p><p><strong>Date:</strong> 29 November 2023 (Wednesday)<br /><strong>Location:</strong> Le Méridien Saigon<br />3C Đ. Tôn Đức Thắng, Bến Nghé, Quận 1, Thành phố Hồ Chí Minh, Vietnam</p><p><strong>Agenda / Nội dung</strong></p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>8.30AM</b>               Registration and Breakfast / Đăng ký và điểm tâm nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.15AM</b>              Introduction / Giới thiệu</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.20AM</b>              Overview ESIGO Asia – President Christopher Yap / Giới thiệu                                                   tổng quan ESIGO Asia – Chủ   tịch Christopher Yap</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>9.30AM</b>              Harmonizing Work and Life by Zoom / Trình bày từ Zoom về giải pháp</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.00AM</b>            Live Zoom Experience Demo / Trình diễn trải nghiệm trực tiếp với Zoom</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.30AM</b>            Overview ESIGO VN architecture and managed services / Tổng                                                 quan cấu trúc ESIGO VN và giới thiệu mô hình kinh doanh các dịch vụ                                     quản lý.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>10.45AM</b>            Showcasing and Networking / Trưng bày sản phẩm và ăn nhẹ.</p><p style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>11.30AM</b>            Collection of door gifts and lucky draw / Nhận quà tặng và quay phần                                     thưởng</p><p><b>12.00PM</b>            Lunch / Ăn trưa</p><p>Please RSVP soonest to secure a seat. / Đăng ký ngay để giữ chỗ ngồi.</p>		\n			<a href=\"https://www.addevent.com/event/Kz19200440\">\n						RSVP\n					</a>\n		<p>ESIGO</p><p>The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Genesys, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally. ESIGO is proud to be a Zoom Phone Provider Exchange Service Provider + Zoom Phone BYOC authorized partner.</p><p>Zoom</p><p>Zoom is an all-in-one intelligent collaboration platform that makes connecting easier, more immersive, and more dynamic for businesses and individuals. Zoom technology puts people at the center, enabling meaningful connections, facilitating modern collaboration, and driving human innovation through solutions like team chat, phone, meetings, omnichannel cloud contact center, smart recordings, whiteboard, and more, in one offering. Founded in 2011, Zoom is publicly traded (NASDAQ:ZM) and headquartered in San Jose, California.</p>','Transform Your Business','','inherit','closed','closed','','7790-revision-v1','','','2023-11-17 13:46:22','2023-11-17 05:46:22','',7790,'https://esigo.co/?p=7930',0,'revision','',0),(7931,1,'2023-11-17 13:49:12','2023-11-17 05:49:12','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-17 13:49:12','2023-11-17 05:49:12','',7390,'https://esigo.co/?p=7931',0,'revision','',0),(7932,1,'2023-11-17 13:49:13','2023-11-17 05:49:13','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-17 13:49:13','2023-11-17 05:49:13','',7390,'https://esigo.co/?p=7932',0,'revision','',0),(7933,1,'2023-11-17 13:49:13','2023-11-17 05:49:13','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-17 13:49:13','2023-11-17 05:49:13','',7390,'https://esigo.co/?p=7933',0,'revision','',0),(7934,1,'2023-11-17 14:04:36','2023-11-17 06:04:36','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-17 14:04:36','2023-11-17 06:04:36','',7390,'https://esigo.co/?p=7934',0,'revision','',0),(7935,1,'2023-11-17 14:04:36','2023-11-17 06:04:36','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-17 14:04:36','2023-11-17 06:04:36','',7390,'https://esigo.co/?p=7935',0,'revision','',0),(7936,1,'2023-11-17 14:04:36','2023-11-17 06:04:36','','News and Events','','inherit','closed','closed','','7390-revision-v1','','','2023-11-17 14:04:36','2023-11-17 06:04:36','',7390,'https://esigo.co/?p=7936',0,'revision','',0),(7938,1,'2023-11-17 14:21:58','2023-11-17 06:21:58','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-11-17 14:21:58','2023-11-17 06:21:58','',17,'https://esigo.co/?p=7938',0,'revision','',0),(7939,1,'2023-11-17 14:21:58','2023-11-17 06:21:58','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-11-17 14:21:58','2023-11-17 06:21:58','',17,'https://esigo.co/?p=7939',0,'revision','',0),(7940,1,'2023-11-17 14:21:58','2023-11-17 06:21:58','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-11-17 14:21:58','2023-11-17 06:21:58','',17,'https://esigo.co/?p=7940',0,'revision','',0),(7941,1,'2023-11-17 14:43:28','2023-11-17 06:43:28','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-11-17 14:43:28','2023-11-17 06:43:28','',17,'https://esigo.co/?p=7941',0,'revision','',0),(7942,1,'2023-11-17 14:43:28','2023-11-17 06:43:28','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-11-17 14:43:28','2023-11-17 06:43:28','',17,'https://esigo.co/?p=7942',0,'revision','',0),(7943,1,'2023-11-17 14:43:28','2023-11-17 06:43:28','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2023-11-17 14:43:28','2023-11-17 06:43:28','',17,'https://esigo.co/?p=7943',0,'revision','',0),(7944,1,'2023-11-17 14:59:32','2023-11-17 06:59:32','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name<br /><br />Service Code &amp; Description<br /></label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence<br /><br />Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 14:59:32','2023-11-17 06:59:32','',7763,'https://esigo.co/?p=7944',0,'revision','',0),(7945,1,'2023-11-17 14:59:32','2023-11-17 06:59:32','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name<br /><br />Service Code &amp; Description<br /></label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence<br /><br />Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 14:59:32','2023-11-17 06:59:32','',7763,'https://esigo.co/?p=7945',0,'revision','',0),(7946,1,'2023-11-17 14:59:32','2023-11-17 06:59:32','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CL000651<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Active<o:p></o:p></p><p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\n<label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: rgb(102, 102, 102); display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">\nLicence Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n</label>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Services-Based Operator (Class) Licence<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Service Code <o:p></o:p></p><p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Internet-Based\nVoice and Data Services<br>\nStore-and-Retrieve (S&amp;R) Value-Added Network Services<br>\nResale of Public switched telephone services<br>\nResale of Public cellular mobile telephone services<br>\nResale of Private automated branch exchange (PABX)<br>\nResale of Public switched message services<br>\nResale of Public switched data services<br>\nResale of Public switched integrated services digital network (ISDN) services<br>\nResale of Video/ Teleconferencing services<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 29 Aug 2023<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business <br>\nOperating Address \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S(408538)<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \nInfo-communications\nMedia Development Authority<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n29 Nov 2106<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n202333220W\n/ ESIGO (ASIA) PRIVATE LIMITED<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n8 UBI ROAD\n2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.<o:p></o:p></p><p>\n</p><p><o:p>&nbsp;</o:p></p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 14:59:32','2023-11-17 06:59:32','',7763,'https://esigo.co/?p=7946',0,'revision','',0),(7947,1,'2023-11-17 15:01:31','2023-11-17 07:01:31','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CL000651<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Active<o:p></o:p></p><p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\n<label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: rgb(102, 102, 102); display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">\nLicence Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n</label>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Services-Based Operator (Class) Licence<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Service Code <o:p></o:p></p><p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Internet-Based\nVoice and Data Services<br>\nStore-and-Retrieve (S&amp;R) Value-Added Network Services<br>\nResale of Public switched telephone services<br>\nResale of Public cellular mobile telephone services<br>\nResale of Private automated branch exchange (PABX)<br>\nResale of Public switched message services<br>\nResale of Public switched data services<br>\nResale of Public switched integrated services digital network (ISDN) services<br>\nResale of Video/ Teleconferencing services<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 29 Aug 2023<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business <br>\nOperating Address \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S(408538)<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \nInfo-communications\nMedia Development Authority<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n29 Nov 2106<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n202333220W\n/ ESIGO (ASIA) PRIVATE LIMITED<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n8 UBI ROAD\n2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.<o:p></o:p></p><p>\n</p><p><o:p>&nbsp;</o:p></p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:01:31','2023-11-17 07:01:31','',7763,'https://esigo.co/?p=7947',0,'revision','',0),(7948,1,'2023-11-17 15:01:31','2023-11-17 07:01:31','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CL000651<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Active<o:p></o:p></p><p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\n<label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: rgb(102, 102, 102); display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">\nLicence Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n</label>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Services-Based Operator (Class) Licence<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Service Code <o:p></o:p></p><p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Internet-Based\nVoice and Data Services<br>\nStore-and-Retrieve (S&amp;R) Value-Added Network Services<br>\nResale of Public switched telephone services<br>\nResale of Public cellular mobile telephone services<br>\nResale of Private automated branch exchange (PABX)<br>\nResale of Public switched message services<br>\nResale of Public switched data services<br>\nResale of Public switched integrated services digital network (ISDN) services<br>\nResale of Video/ Teleconferencing services<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 29 Aug 2023<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business <br>\nOperating Address \n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S(408538)<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \nInfo-communications\nMedia Development Authority<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n29 Nov 2106<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n202333220W\n/ ESIGO (ASIA) PRIVATE LIMITED<o:p></o:p></p><p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \n8 UBI ROAD\n2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.<o:p></o:p></p><p>\n</p><p><o:p>&nbsp;</o:p></p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:01:31','2023-11-17 07:01:31','',7763,'https://esigo.co/?p=7948',0,'revision','',0),(7949,1,'2023-11-17 15:01:31','2023-11-17 07:01:31','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number                  CL000651</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status                                  Active</p><p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: #666666; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\"> Licence Name      Services-Based Operator (Class) Licence</label></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Service Code </p><p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description                      Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date                          29 Aug 2023</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br />Operating Address             S(408538)</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency                               Info-communications Media Development Authority</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date                        29 Nov 2106</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company                           202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks                             8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p><p> </p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:01:31','2023-11-17 07:01:31','',7763,'https://esigo.co/?p=7949',0,'revision','',0),(7951,1,'2023-11-17 15:15:34','2023-11-17 07:15:34','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number                  CL000651</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status                                  Active</p><p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: #666666; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\"> Licence Name      Services-Based Operator (Class) Licence</label></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Service Code </p><p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description                      Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date                          29 Aug 2023</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br />Operating Address             S(408538)</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency                               Info-communications Media Development Authority</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date                        29 Nov 2106</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company                           202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks                             8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p><p> </p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:15:34','2023-11-17 07:15:34','',7763,'https://esigo.co/?p=7951',0,'revision','',0);
INSERT INTO `wpsl_posts` VALUES (7952,1,'2023-11-17 15:15:34','2023-11-17 07:15:34','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number                  CL000651</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status                                  Active</p><p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; color: #666666; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\"> Licence Name      Services-Based Operator (Class) Licence</label></p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Service Code </p><p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description                      Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date                          29 Aug 2023</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br />Operating Address             S(408538)</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency                               Info-communications Media Development Authority</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date                        29 Nov 2106</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company                           202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks                             8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p> </p><p> </p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:15:34','2023-11-17 07:15:34','',7763,'https://esigo.co/?p=7952',0,'revision','',0),(7953,1,'2023-11-17 15:15:34','2023-11-17 07:15:34','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;Service-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CL000651</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Active</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Services-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">Service Code<br></label></p>\n<p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video/ Teleconferencing services</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Aug 2023</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S(408538)</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Info-communications Media Development Authority</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Nov 2106</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;202333220W / ESIGO (ASIA) PRIVATE LIMITED</p>\n<p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p>\n<p></p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:15:34','2023-11-17 07:15:34','',7763,'https://esigo.co/?p=7953',0,'revision','',0),(7954,1,'2023-11-17 15:16:19','2023-11-17 07:16:19','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;Service-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CL000651</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Active</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Services-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">Service Code<br></label></p>\n<p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video/ Teleconferencing services</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Aug 2023</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S(408538)</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Info-communications Media Development Authority</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Nov 2106</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;202333220W / ESIGO (ASIA) PRIVATE LIMITED</p>\n<p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p>\n<p></p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:16:19','2023-11-17 07:16:19','',7763,'https://esigo.co/?p=7954',0,'revision','',0),(7955,1,'2023-11-17 15:16:19','2023-11-17 07:16:19','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;Service-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CL000651</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Active</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Services-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">Service Code<br></label></p>\n<p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video/ Teleconferencing services</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Aug 2023</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S(408538)</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Info-communications Media Development Authority</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Nov 2106</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;202333220W / ESIGO (ASIA) PRIVATE LIMITED</p>\n<p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p>\n<p></p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:16:19','2023-11-17 07:16:19','',7763,'https://esigo.co/?p=7955',0,'revision','',0),(7956,1,'2023-11-17 15:16:19','2023-11-17 07:16:19','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;Service-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CL000651</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Active</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Services-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">Service Code<br></label></p>\n<p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video/ Teleconferencing services</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Aug 2023</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S(408538)</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Info-communications Media Development Authority</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Nov 2106</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;202333220W / ESIGO (ASIA) PRIVATE LIMITED</p>\n<p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.&nbsp;</p>\n<p></p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:16:19','2023-11-17 07:16:19','',7763,'https://esigo.co/?p=7956',0,'revision','',0),(7957,1,'2023-11-17 15:17:41','2023-11-17 07:17:41','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;Service-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CL000651</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Active</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Services-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">Service Code<br></label></p>\n<p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video/ Teleconferencing services</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Aug 2023</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S(408538)</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Info-communications Media Development Authority</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Nov 2106</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;202333220W / ESIGO (ASIA) PRIVATE LIMITED</p>\n<p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.&nbsp;</p>\n<p></p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:17:41','2023-11-17 07:17:41','',7763,'https://esigo.co/?p=7957',0,'revision','',0),(7958,1,'2023-11-17 15:17:41','2023-11-17 07:17:41','<p><b>Service-Based Operator (Class) License</b></p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Number</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">CL000651</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Status</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Active</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Licence Name</label></p><p>Service Code &amp; Description</p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Services-Based Operator (Class) Licence</p><p>Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p> </p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Issue Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Aug 2023</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Business Operating Address</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">S(408538)</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Agency</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">Info-communications Media Development Authority</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Expiry Date</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">29 Nov 2106</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Company</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p><label style=\"display: block; margin-bottom: 5px; max-width: 41.6667%; overflow-wrap: break-word; line-height: 20px; position: relative; width: 193.509px; flex-basis: 41.6667%; padding-top: 7px; color: #666666;\">Remarks</label></p><p style=\"margin-bottom: 0px; padding-top: 7px; padding-right: 15px; padding-bottom: 7px; border: 0px; position: relative; width: 270.911px; flex-basis: 58.3333%; max-width: 58.3333%; min-height: 34px; line-height: 20px; color: #000000;\">8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;Service-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CL000651</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Active</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Name&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Services-Based Operator (Class) Licence</p>\n<p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">Service Code<br></label></p>\n<p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet-Based Voice and Data Services<br>Store-and-Retrieve (S&amp;R) Value-Added Network Services<br>Resale of Public switched telephone services<br>Resale of Public cellular mobile telephone services<br>Resale of Private automated branch exchange (PABX)<br>Resale of Public switched message services<br>Resale of Public switched data services<br>Resale of Public switched integrated services digital network (ISDN) services<br>Resale of Video/ Teleconferencing services</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&nbsp;</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Aug 2023</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br>Operating Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S(408538)</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Info-communications Media Development Authority</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 29 Nov 2106</p>\n<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;202333220W / ESIGO (ASIA) PRIVATE LIMITED</p>\n<p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023.&nbsp;</p>\n<p></p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:17:41','2023-11-17 07:17:41','',7763,'https://esigo.co/?p=7958',0,'revision','',0),(7959,1,'2023-11-17 15:17:41','2023-11-17 07:17:41','<p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Service-Based Operator (Class) Licence</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Number                 CL000651</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Status                                 Active</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Licence Name                    Services-Based Operator (Class) Licence</p><p style=\"margin: 0cm; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><label style=\"max-width: 41.6667%; overflow-wrap: break-word; flex-basis: 41.6667%; display: block; line-height: 20px; margin-bottom: 5px; padding-top: 7px; position: relative; width: 193.509px;\">Service Code<br /></label></p><p style=\"margin: 0cm 0cm 0cm 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">&amp; Description                      Internet-Based Voice and Data Services<br />Store-and-Retrieve (S&amp;R) Value-Added Network Services<br />Resale of Public switched telephone services<br />Resale of Public cellular mobile telephone services<br />Resale of Private automated branch exchange (PABX)<br />Resale of Public switched message services<br />Resale of Public switched data services<br />Resale of Public switched integrated services digital network (ISDN) services<br />Resale of Video/ Teleconferencing services</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Issue Date                          29 Aug 2023</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Business<br />Operating Address             S(408538)</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Agency                               Info-communications Media Development Authority</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Expiry Date                        29 Nov 2106</p><p style=\"margin: 0cm 0cm 11.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Company                           202333220W / ESIGO (ASIA) PRIVATE LIMITED</p><p style=\"margin: 0cm 0cm 11.25pt 144pt; text-indent: -144pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Remarks                            8 UBI ROAD 2 #06-31 ZERVEX | LICENCEONE CASE ID = U2320169470 DATED:14/11/2023. </p><p> </p>','Business Licence','','inherit','closed','closed','','7763-revision-v1','','','2023-11-17 15:17:41','2023-11-17 07:17:41','',7763,'https://esigo.co/?p=7959',0,'revision','',0),(7960,1,'2023-11-17 16:09:26','2023-11-17 08:09:26','This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.\n<h4>PERSONAL DATA</h4>\n<ol>\n 	<li>As used in this Policy:</li>\n</ol>\n“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and\n\n“personal data” means data, whether true or not, about a customer who can be identified:\n<ul>\n 	<li>from that data; or (b) from that data and other information to which we have or are likely to have</li>\n</ul>\n<ol start=\"2\">\n 	<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li>\n</ol>\n<ol start=\"3\">\n 	<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li>\n</ol>\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h4>\n<ol start=\"4\">\n 	<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li>\n</ol>\n<ol start=\"5\">\n 	<li>We may collect and use your personal data for any or all of the following purposes:\n(a) performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;\n(b) verifying your identity;\n(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;\n(d) managing your relationship with us;\n(e) processing payment or credit transactions;\n(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;\n(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;\n(h) any other purposes for which you have provided the information;\n(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and\n(j) any other incidental business purposes related to or in connection with the</li>\n</ol>\n<ol start=\"6\">\n 	<li>We may disclose your personal data:\n(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or\n(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li>\n</ol>\n<ol start=\"7\">\n 	<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li>\n</ol>\n<h4>WITHDRAWING YOUR CONSENT</h4>\n<ol start=\"8\">\n 	<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li>\n</ol>\n<ol start=\"9\">\n 	<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li>\n</ol>\n<ol start=\"10\">\n 	<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</li>\n</ol>\n<ol start=\"11\">\n 	<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li>\n</ol>\n<h2>ACCESS TO AND CORRECTION OF PERSONAL DATA</h2>\n<ol start=\"12\">\n 	<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li>\n</ol>\n<ol start=\"13\">\n 	<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li>\n</ol>\n<ol start=\"14\">\n 	<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li>\n</ol>\n<h4>PROTECTION OF PERSONAL DATA</h4>\n<ol start=\"15\">\n 	<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li>\n</ol>\n<ol start=\"16\">\n 	<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li>\n</ol>\n<h4>ACCURACY OF PERSONAL DATA</h4>\n<ol start=\"17\">\n 	<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li>\n</ol>\n<h4>RETENTION OF PERSONAL DATA</h4>\n<ol start=\"18\">\n 	<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li>\n</ol>\n<ol start=\"19\">\n 	<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li>\n</ol>\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h4>\n<ol start=\"20\">\n 	<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li>\n</ol>\n<h4>DATA PROTECTION OFFICER</h4>\n<ol start=\"21\">\n 	<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li>\n</ol>\nData Protection Officer\n\nESIGO (Asia) Pte Ltd\n\nTel: +65 6817 1978\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY</h4>\n<ol start=\"22\">\n 	<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li>\n</ol>\n<ol start=\"23\">\n 	<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li>\n</ol>\nEffective date: 15 September 2023\n\nLast updated: 15 September 2023','Privacy Policy','','inherit','closed','closed','','7178-revision-v1','','','2023-11-17 16:09:26','2023-11-17 08:09:26','',7178,'https://esigo.co/?p=7960',0,'revision','',0),(7961,1,'2023-11-17 16:09:26','2023-11-17 08:09:26','This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.\n<h4>PERSONAL DATA</h4>\n<ol>\n 	<li>As used in this Policy:</li>\n</ol>\n“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and\n\n“personal data” means data, whether true or not, about a customer who can be identified:\n<ul>\n 	<li>from that data; or (b) from that data and other information to which we have or are likely to have</li>\n</ul>\n<ol start=\"2\">\n 	<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li>\n</ol>\n<ol start=\"3\">\n 	<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li>\n</ol>\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h4>\n<ol start=\"4\">\n 	<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li>\n</ol>\n<ol start=\"5\">\n 	<li>We may collect and use your personal data for any or all of the following purposes:\n(a) performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;\n(b) verifying your identity;\n(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;\n(d) managing your relationship with us;\n(e) processing payment or credit transactions;\n(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;\n(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;\n(h) any other purposes for which you have provided the information;\n(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and\n(j) any other incidental business purposes related to or in connection with the</li>\n</ol>\n<ol start=\"6\">\n 	<li>We may disclose your personal data:\n(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or\n(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li>\n</ol>\n<ol start=\"7\">\n 	<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li>\n</ol>\n<h4>WITHDRAWING YOUR CONSENT</h4>\n<ol start=\"8\">\n 	<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li>\n</ol>\n<ol start=\"9\">\n 	<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li>\n</ol>\n<ol start=\"10\">\n 	<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</li>\n</ol>\n<ol start=\"11\">\n 	<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li>\n</ol>\n<h2>ACCESS TO AND CORRECTION OF PERSONAL DATA</h2>\n<ol start=\"12\">\n 	<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li>\n</ol>\n<ol start=\"13\">\n 	<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li>\n</ol>\n<ol start=\"14\">\n 	<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li>\n</ol>\n<h4>PROTECTION OF PERSONAL DATA</h4>\n<ol start=\"15\">\n 	<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li>\n</ol>\n<ol start=\"16\">\n 	<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li>\n</ol>\n<h4>ACCURACY OF PERSONAL DATA</h4>\n<ol start=\"17\">\n 	<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li>\n</ol>\n<h4>RETENTION OF PERSONAL DATA</h4>\n<ol start=\"18\">\n 	<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li>\n</ol>\n<ol start=\"19\">\n 	<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li>\n</ol>\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h4>\n<ol start=\"20\">\n 	<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li>\n</ol>\n<h4>DATA PROTECTION OFFICER</h4>\n<ol start=\"21\">\n 	<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li>\n</ol>\nData Protection Officer\n\nESIGO (Asia) Pte Ltd\n\nTel: +65 6817 1978\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY</h4>\n<ol start=\"22\">\n 	<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li>\n</ol>\n<ol start=\"23\">\n 	<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li>\n</ol>\nEffective date: 15 September 2023\n\nLast updated: 15 September 2023','Privacy Policy','','inherit','closed','closed','','7178-revision-v1','','','2023-11-17 16:09:26','2023-11-17 08:09:26','',7178,'https://esigo.co/?p=7961',0,'revision','',0),(7962,1,'2023-11-17 16:09:26','2023-11-17 08:09:26','<p>This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.</p>\n<h4>PERSONAL DATA</h4>\n<ol>\n<li>As used in this Policy:</li>\n</ol>\n<p>“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and</p>\n<p>“personal data” means data, whether true or not, about a customer who can be identified:</p>\n<ul>\n<li>from that data; or (b) from that data and other information to which we have or are likely to have</li>\n</ul>\n<ol start=\"2\">\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li>\n</ol>\n<ol start=\"3\">\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li>\n</ol>\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h4>\n<ol start=\"4\">\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li>\n</ol>\n<ol start=\"5\">\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the</li>\n</ol>\n<ol start=\"6\">\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li>\n</ol>\n<ol start=\"7\">\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li>\n</ol>\n<h4>WITHDRAWING YOUR CONSENT</h4>\n<ol start=\"8\">\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li>\n</ol>\n<ol start=\"9\">\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li>\n</ol>\n<ol start=\"10\">\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</li>\n</ol>\n<ol start=\"11\">\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li>\n</ol>\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA</h4>\n<ol start=\"12\">\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li>\n</ol>\n<ol start=\"13\">\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li>\n</ol>\n<ol start=\"14\">\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li>\n</ol>\n<h4>PROTECTION OF PERSONAL DATA</h4>\n<ol start=\"15\">\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li>\n</ol>\n<ol start=\"16\">\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li>\n</ol>\n<h4>ACCURACY OF PERSONAL DATA</h4>\n<ol start=\"17\">\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li>\n</ol>\n<h4>RETENTION OF PERSONAL DATA</h4>\n<ol start=\"18\">\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li>\n</ol>\n<ol start=\"19\">\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li>\n</ol>\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h4>\n<ol start=\"20\">\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li>\n</ol>\n<h4>DATA PROTECTION OFFICER</h4>\n<ol start=\"21\">\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li>\n</ol>\n<p>Data Protection Officer</p>\n<p>ESIGO (Asia) Pte Ltd</p>\n<p>Tel: +65 6817 1978</p>\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY</h4>\n<ol start=\"22\">\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li>\n</ol>\n<ol start=\"23\">\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li>\n</ol>\n<p>Effective date: 15 September 2023</p>\n<p>Last updated: 15 September 2023</p>','Privacy Policy','','inherit','closed','closed','','7178-revision-v1','','','2023-11-17 16:09:26','2023-11-17 08:09:26','',7178,'https://esigo.co/?p=7962',0,'revision','',0),(7963,1,'2023-11-17 16:19:07','2023-11-17 08:19:07','<p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">General</strong></p><ol><li>We thank you for visiting <u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u> (“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li></ol><p><strong>Proprietary Rights</strong></p><ol start=\"4\"><li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li></ol><p><strong>Restrictions on Use</strong></p><ol start=\"5\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO. </li></ol><p>6A. If you distribute or otherwise share the Contents, you must:<br />(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br />i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br />ii. a copyright notice; and<br />iii. a notice that refers to these Terms of Use; and<br />(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO. <strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p><ol start=\"7\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO. </li></ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use. </p><p><strong>Disclaimer of Warranties and Liability</strong></p><ol start=\"10\"><li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br />(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br />(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) any loss of access to or use of this Site, howsoever caused;<br />(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br />(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br />(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li></ol><p><strong>Indemnity</strong></p><ol start=\"12\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) your use of the Contents and any materials developed based on the Contents; and/or<br />(c) your breach of any of these Terms of Use.</li></ol><p><strong>No Representations</strong></p><ol start=\"13\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br />(a) ESIGO’s statutory duties, functions and powers; and<br />(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li><li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li></ol><p><strong>Availability and Right of Access</strong></p><ol start=\"17\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li><li>You agree that you will not:<br />(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br />(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br />(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li></ol><p><strong>Hyperlinks from This Site to Third Party Websites</strong></p><ol start=\"21\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li></ol><p><strong>Hyperlinks to This Website from Third Party Websites</strong></p><ol start=\"23\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li></ol><p><strong>Permission for Use</strong></p><ol start=\"29\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li></ol><p><strong>Governing Law</strong></p><ol start=\"31\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li></ol>','Terms of Use','','publish','closed','closed','','terms-of-use','','','2023-11-17 16:31:15','2023-11-17 08:31:15','',0,'https://esigo.co/?page_id=7963',0,'page','',0),(7964,1,'2023-11-17 16:12:39','2023-11-17 08:12:39','<p>This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.</p>\n<h4>PERSONAL DATA</h4>\n<ol>\n<li>As used in this Policy:</li>\n</ol>\n<p>“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and</p>\n<p>“personal data” means data, whether true or not, about a customer who can be identified:</p>\n<ul>\n<li>from that data; or (b) from that data and other information to which we have or are likely to have</li>\n</ul>\n<ol start=\"2\">\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li>\n</ol>\n<ol start=\"3\">\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li>\n</ol>\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h4>\n<ol start=\"4\">\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li>\n</ol>\n<ol start=\"5\">\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the</li>\n</ol>\n<ol start=\"6\">\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li>\n</ol>\n<ol start=\"7\">\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li>\n</ol>\n<h4>WITHDRAWING YOUR CONSENT</h4>\n<ol start=\"8\">\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li>\n</ol>\n<ol start=\"9\">\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li>\n</ol>\n<ol start=\"10\">\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</li>\n</ol>\n<ol start=\"11\">\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li>\n</ol>\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA</h4>\n<ol start=\"12\">\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li>\n</ol>\n<ol start=\"13\">\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li>\n</ol>\n<ol start=\"14\">\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li>\n</ol>\n<h4>PROTECTION OF PERSONAL DATA</h4>\n<ol start=\"15\">\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li>\n</ol>\n<ol start=\"16\">\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li>\n</ol>\n<h4>ACCURACY OF PERSONAL DATA</h4>\n<ol start=\"17\">\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li>\n</ol>\n<h4>RETENTION OF PERSONAL DATA</h4>\n<ol start=\"18\">\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li>\n</ol>\n<ol start=\"19\">\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li>\n</ol>\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h4>\n<ol start=\"20\">\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li>\n</ol>\n<h4>DATA PROTECTION OFFICER</h4>\n<ol start=\"21\">\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li>\n</ol>\n<p>Data Protection Officer</p>\n<p>ESIGO (Asia) Pte Ltd</p>\n<p>Tel: +65 6817 1978</p>\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY</h4>\n<ol start=\"22\">\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li>\n</ol>\n<ol start=\"23\">\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li>\n</ol>\n<p>Effective date: 15 September 2023</p>\n<p>Last updated: 15 September 2023</p>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:12:39','2023-11-17 08:12:39','',7963,'https://esigo.co/?p=7964',0,'revision','',0),(7965,1,'2023-11-17 16:21:21','2023-11-17 08:21:21','<p>This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.</p>\n<h4>PERSONAL DATA</h4>\n<ol>\n<li>As used in this Policy:</li>\n</ol>\n<p>“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and</p>\n<p>“personal data” means data, whether true or not, about a customer who can be identified:</p>\n<ul>\n<li>from that data; or (b) from that data and other information to which we have or are likely to have</li>\n</ul>\n<ol start=\"2\">\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li>\n</ol>\n<ol start=\"3\">\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li>\n</ol>\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h4>\n<ol start=\"4\">\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li>\n</ol>\n<ol start=\"5\">\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the</li>\n</ol>\n<ol start=\"6\">\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li>\n</ol>\n<ol start=\"7\">\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li>\n</ol>\n<h4>WITHDRAWING YOUR CONSENT</h4>\n<ol start=\"8\">\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li>\n</ol>\n<ol start=\"9\">\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li>\n</ol>\n<ol start=\"10\">\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</li>\n</ol>\n<ol start=\"11\">\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li>\n</ol>\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA</h4>\n<ol start=\"12\">\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li>\n</ol>\n<ol start=\"13\">\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li>\n</ol>\n<ol start=\"14\">\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li>\n</ol>\n<h4>PROTECTION OF PERSONAL DATA</h4>\n<ol start=\"15\">\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li>\n</ol>\n<ol start=\"16\">\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li>\n</ol>\n<h4>ACCURACY OF PERSONAL DATA</h4>\n<ol start=\"17\">\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li>\n</ol>\n<h4>RETENTION OF PERSONAL DATA</h4>\n<ol start=\"18\">\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li>\n</ol>\n<ol start=\"19\">\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li>\n</ol>\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h4>\n<ol start=\"20\">\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li>\n</ol>\n<h4>DATA PROTECTION OFFICER</h4>\n<ol start=\"21\">\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li>\n</ol>\n<p>Data Protection Officer</p>\n<p>ESIGO (Asia) Pte Ltd</p>\n<p>Tel: +65 6817 1978</p>\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY</h4>\n<ol start=\"22\">\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li>\n</ol>\n<ol start=\"23\">\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li>\n</ol>\n<p>Effective date: 15 September 2023</p>\n<p>Last updated: 15 September 2023</p>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:21:21','2023-11-17 08:21:21','',7963,'https://esigo.co/?p=7965',0,'revision','',0),(7966,1,'2023-11-17 16:21:21','2023-11-17 08:21:21','<p>This privacy policy (“Policy”) sets out the basis which ESIGO (Asia) Pte Ltd (“we”, “us”, or “our”) may collect, use, disclose or otherwise process personal data of our customers in accordance with the Personal Data Protection Act (“PDPA”). This Policy applies to personal data in our possession or under our control, including personal data in the possession of organisations which we have engaged to collect, use, disclose or process personal data for our purposes.</p>\n<h4>PERSONAL DATA</h4>\n<ol>\n<li>As used in this Policy:</li>\n</ol>\n<p>“customer” means an individual who (a) has contacted us through any means to find out more about any goods or services we provide, or (b) may, or has, entered into a contract with us for the supply of any goods or services by us; and</p>\n<p>“personal data” means data, whether true or not, about a customer who can be identified:</p>\n<ul>\n<li>from that data; or (b) from that data and other information to which we have or are likely to have</li>\n</ul>\n<ol start=\"2\">\n<li>Depending on the nature of your interaction with us, some examples of personal data which we may collect from you include your name and identification information such as your NRIC number, contact information such as your address, email address or telephone number, nationality, gender, date of birth, marital status, photographs and other audio-visual information, employment information and financial information such as credit card numbers, debit card numbers or bank account</li>\n</ol>\n<ol start=\"3\">\n<li>Other terms used in this Policy shall have the meanings given to them in the PDPA (where the context so permits).</li>\n</ol>\n<h4>COLLECTION, USE AND DISCLOSURE OF PERSONAL DATA</h4>\n<ol start=\"4\">\n<li>We generally do not collect your personal data unless (a) it is provided to us voluntarily by you directly or via a third party who has been duly authorised by you to disclose your personal data to us (your “authorised representative”) after (i) you (or your authorised representative) have been notified of the purposes for which the data is collected, and (ii) you (or your authorised representative) have provided written consent to the collection and usage of your personal data for those purposes, or (b) collection and use of personal data without consent is permitted or required by the PDPA or other laws. We shall seek your consent before collecting any additional personal data and before using your personal data for a purpose which has not been notified to you (except where permitted or authorised by law).</li>\n</ol>\n<ol start=\"5\">\n<li>We may collect and use your personal data for any or all of the following purposes:<br>(a) performing obligations in the course of or in connection with our provision of the goods and/or services requested by you;<br>(b) verifying your identity;<br>(c) responding to, handling, and processing queries, requests, applications, complaints, and feedback from you;<br>(d) managing your relationship with us;<br>(e) processing payment or credit transactions;<br>(f) sending your marketing information about our goods or services including notifying you of our marketing events, initiatives and promotions, lucky draws, membership and rewards schemes and other promotions;<br>(g) complying with any applicable laws, regulations, codes of practice, guidelines, or rules, or to assist in law enforcement and investigations conducted by any governmental and/or regulatory authority;<br>(h) any other purposes for which you have provided the information;<br>(i) transmitting to any unaffiliated third parties including our third party service providers and agents, and relevant governmental and/or regulatory authorities, whether in Singapore or abroad, for the aforementioned purposes; and<br>(j) any other incidental business purposes related to or in connection with the</li>\n</ol>\n<ol start=\"6\">\n<li>We may disclose your personal data:<br>(a) where such disclosure is required for performing obligations in the course of or in connection with our provision of the goods or services requested by you; or<br>(b) to third party service providers, agents and other organisations we have engaged to perform any of the functions listed in clause 5 above for</li>\n</ol>\n<ol start=\"7\">\n<li>The purposes listed in the above clauses may continue to apply even in situations where your relationship with us (for example, pursuant to a contract) has been terminated or altered in any way, for a reasonable period thereafter (including, where applicable, a period to enable us to enforce our rights under any contract with you).</li>\n</ol>\n<h4>WITHDRAWING YOUR CONSENT</h4>\n<ol start=\"8\">\n<li>The consent that you provide for the collection, use and disclosure of your personal data will remain valid until such time it is being withdrawn by you in You may withdraw consent and request us to stop using and/or disclosing your personal data for any or all of the purposes listed above by submitting your request in writing or via email to our Data Protection Officer at the contact details provided below.</li>\n</ol>\n<ol start=\"9\">\n<li>Upon receipt of your written request to withdraw your consent, we may require reasonable time (depending on the complexity of the request and its impact on our relationship with you) for your request to be processed and for us to notify you of the consequences of us acceding to the same, including any legal consequences which may affect your rights and liabilities to us. In general, we shall seek to process your request within ten (10) business days of receiving it.</li>\n</ol>\n<ol start=\"10\">\n<li>Whilst we respect your decision to withdraw your consent, please note that depending on the nature and scope of your request, we may not be in a position to continue providing our goods or services to you and we shall, in such circumstances, notify you before completing the processing of your request. Should you decide to cancel your withdrawal of consent, please inform us in writing in the manner described in clause 8 above.</li>\n</ol>\n<ol start=\"11\">\n<li>Please note that withdrawing consent does not affect our right to continue to collect, use and disclose personal data where such collection, use and disclose without consent is permitted or required under applicable</li>\n</ol>\n<h4>ACCESS TO AND CORRECTION OF PERSONAL DATA</h4>\n<ol start=\"12\">\n<li>If you wish to make (a) an access request for access to a copy of the personal data which we hold about you or information about the ways in which we use or disclose your personal data, or (b) a correction request to correct or update any of your personal data which we hold about you, you may submit your request in writing or via email to our Data Protection Officer at the contact details provided</li>\n</ol>\n<ol start=\"13\">\n<li>Please note that a reasonable fee may be charged for an access If so, we will inform you of the fee before processing your request.</li>\n</ol>\n<ol start=\"14\">\n<li>We will respond to your request as soon as reasonably possible. Should we not be able to respond to your request within thirty (30) days after receiving your request, we will inform you in writing within thirty (30) days of the time by which we will be able to respond to your request. If we are unable to provide you with any personal data or to make a correction requested by you, we shall generally inform you of the reasons why we are unable to do so (except where we are not required to do so under the PDPA).</li>\n</ol>\n<h4>PROTECTION OF PERSONAL DATA</h4>\n<ol start=\"15\">\n<li>To safeguard your personal data from unauthorised access, collection, use, disclosure, copying, modification, disposal or similar risks, we have introduced appropriate administrative, physical and technical measures such as up-to-date antivirus protection, encryption and the use of privacy filters to secure all storage and transmission of personal data by us, and disclosing personal data both internally and to our authorised third party service providers and agents only on a need-to-know</li>\n</ol>\n<ol start=\"16\">\n<li>You should be aware, however, that no method of transmission over the Internet or method of electronic storage is completely While security cannot be guaranteed, we strive to protect the security of your information and are constantly reviewing and enhancing our information security measures.</li>\n</ol>\n<h4>ACCURACY OF PERSONAL DATA</h4>\n<ol start=\"17\">\n<li>We generally rely on personal data provided by you (or your authorised representative). In order to ensure that your personal data is current, complete and accurate, please update us if there are changes to your personal data by informing our Data Protection Officer in writing or via email at the contact details provided</li>\n</ol>\n<h4>RETENTION OF PERSONAL DATA</h4>\n<ol start=\"18\">\n<li>We may retain your personal data for as long as it is necessary to fulfil the purpose for which it was collected, or as required or permitted by applicable</li>\n</ol>\n<ol start=\"19\">\n<li>We will cease to retain your personal data, or remove the means by which the data can be associated with you, as soon as it is reasonable to assume that such retention no longer serves the purpose for which the personal data was collected, and is no longer necessary for legal or business</li>\n</ol>\n<h4>TRANSFERS OF PERSONAL DATA OUTSIDE OF SINGAPORE</h4>\n<ol start=\"20\">\n<li>We generally do not transfer your personal data to countries outside of However, if we do so, we will obtain your consent for the transfer to be made and we will take steps to ensure that your personal data continues to receive a standard of protection that is at least comparable to that provided under the PDPA.</li>\n</ol>\n<h4>DATA PROTECTION OFFICER</h4>\n<ol start=\"21\">\n<li>You may contact our Data Protection Officer if you have any enquiries or feedback on our personal data protection policies and procedures, or if you wish to make any request, in the following manner:</li>\n</ol>\n<p>Data Protection Officer</p>\n<p>ESIGO (Asia) Pte Ltd</p>\n<p>Tel: +65 6817 1978</p>\n<h4>EFFECT OF POLICY AND CHANGES TO POLICY</h4>\n<ol start=\"22\">\n<li>This Policy applies in conjunction with any other policies, contractual clauses and consent clauses that apply in relation to the collection, use and disclosure of your personal data by</li>\n</ol>\n<ol start=\"23\">\n<li>We may revise this Policy from time to time without any prior You may determine if any such revision has taken place by referring to the date on which this Policy was last updated. Your continued use of our services constitutes your acknowledgement and acceptance of such changes.</li>\n</ol>\n<p>Effective date: 15 September 2023</p>\n<p>Last updated: 15 September 2023</p>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:21:21','2023-11-17 08:21:21','',7963,'https://esigo.co/?p=7966',0,'revision','',0),(7967,1,'2023-11-17 16:21:21','2023-11-17 08:21:21','<p><strong>Terms of Use</strong></p><p><strong>General</strong></p><ol><li>We thank you for visiting <u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u> (“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li></ol><p><strong>Proprietary Rights</strong></p><ol start=\"4\"><li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li></ol><p><strong>Restrictions on Use</strong></p><ol start=\"5\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO. </li></ol><p>6A. If you distribute or otherwise share the Contents, you must:<br />(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br />i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br />ii. a copyright notice; and<br />iii. a notice that refers to these Terms of Use; and<br />(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO. <strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p><ol start=\"7\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO. </li></ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use. </p><p><strong>Disclaimer of Warranties and Liability</strong></p><ol start=\"10\"><li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br />(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br />(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) any loss of access to or use of this Site, howsoever caused;<br />(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br />(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br />(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li></ol><p><strong>Indemnity</strong></p><ol start=\"12\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) your use of the Contents and any materials developed based on the Contents; and/or<br />(c) your breach of any of these Terms of Use.</li></ol><p><strong>No Representations</strong></p><ol start=\"13\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br />(a) ESIGO’s statutory duties, functions and powers; and<br />(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li><li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li></ol><p><strong>Availability and Right of Access</strong></p><ol start=\"17\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li><li>You agree that you will not:<br />(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br />(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br />(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li></ol><p><strong>Hyperlinks from This Site to Third Party Websites</strong></p><ol start=\"21\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li></ol><p><strong>Hyperlinks to This Website from Third Party Websites</strong></p><ol start=\"23\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li></ol><p><strong>Permission for Use</strong></p><ol start=\"29\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li></ol><p><strong>Governing Law</strong></p><ol start=\"31\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li></ol><p> </p>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:21:21','2023-11-17 08:21:21','',7963,'https://esigo.co/?p=7967',0,'revision','',0),(7968,1,'2023-11-17 16:25:07','2023-11-17 08:25:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-licence\">\n											Business Licence\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-17 16:25:07','2023-11-17 08:25:07','',6626,'https://esigo.co/?p=7968',0,'revision','',0),(7969,1,'2023-11-17 16:25:07','2023-11-17 08:25:07','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-licence\">\n											Business Licence\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-17 16:25:07','2023-11-17 08:25:07','',6626,'https://esigo.co/?p=7969',0,'revision','',0),(7970,1,'2023-11-17 16:25:08','2023-11-17 08:25:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/ESi-Go-qebv3fmtv5uvm197chytkq073a4l5hfa461yr3fkcq.png\" title=\"ESi-Go-logo\" alt=\"ESi-Go-logo\" loading=\"lazy\" />															\n		<p>ESIGO (Asia) Pte Ltd</p><p>8 Ubi Road 2, Zervex</p><p>#06-31</p><p>Singapore 408538</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n											</a>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Explore</h2>		\n			<link rel=\"stylesheet\" href=\"https://esigo.futuremediatrix.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://esigo.futuremediatrix.com/about-us/\">\n											About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/news-and-events/\">\n											News and Events\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/managed-services\">\n											Managed Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/contact-us/\">\n											Contact Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/privacy-policy\">\n											 Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/business-licence\">\n											Business Licence\n											</a>\n									</li>\n								<li>\n											<a href=\"https://esigo.futuremediatrix.com/terms-of-use\">\n											Terms of Use\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<p>Subscribe our Newsletter and get every update informations!</p>[mc4wp_form id=2172]<p style=\"text-align: center;\">Copyright © 2023 <a href=\"https://esigo.futuremediatrix.com/\">ESIGO (Asia) Pte Ltd</a><a href=\"https://esigo.futuremediatrix.com/\">.</a> All rights reserved.</p>','Global Footer','','inherit','closed','closed','','6626-revision-v1','','','2023-11-17 16:25:08','2023-11-17 08:25:08','',6626,'https://esigo.co/?p=7970',0,'revision','',0),(7971,1,'2023-11-17 16:29:39','2023-11-17 08:29:39','<p><strong>Terms of Use</strong></p><p><strong>General</strong></p><ol><li>We thank you for visiting <u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u> (“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li></ol><p><strong>Proprietary Rights</strong></p><ol start=\"4\"><li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li></ol><p><strong>Restrictions on Use</strong></p><ol start=\"5\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO. </li></ol><p>6A. If you distribute or otherwise share the Contents, you must:<br />(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br />i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br />ii. a copyright notice; and<br />iii. a notice that refers to these Terms of Use; and<br />(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO. <strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p><ol start=\"7\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO. </li></ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use. </p><p><strong>Disclaimer of Warranties and Liability</strong></p><ol start=\"10\"><li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br />(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br />(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) any loss of access to or use of this Site, howsoever caused;<br />(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br />(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br />(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li></ol><p><strong>Indemnity</strong></p><ol start=\"12\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) your use of the Contents and any materials developed based on the Contents; and/or<br />(c) your breach of any of these Terms of Use.</li></ol><p><strong>No Representations</strong></p><ol start=\"13\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br />(a) ESIGO’s statutory duties, functions and powers; and<br />(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li><li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li></ol><p><strong>Availability and Right of Access</strong></p><ol start=\"17\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li><li>You agree that you will not:<br />(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br />(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br />(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li></ol><p><strong>Hyperlinks from This Site to Third Party Websites</strong></p><ol start=\"21\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li></ol><p><strong>Hyperlinks to This Website from Third Party Websites</strong></p><ol start=\"23\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li></ol><p><strong>Permission for Use</strong></p><ol start=\"29\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li></ol><p><strong>Governing Law</strong></p><ol start=\"31\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li></ol><p> </p>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:29:39','2023-11-17 08:29:39','',7963,'https://esigo.co/?p=7971',0,'revision','',0),(7972,1,'2023-11-17 16:29:39','2023-11-17 08:29:39','<p><strong>Terms of Use</strong></p><p><strong>General</strong></p><ol><li>We thank you for visiting <u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u> (“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li></ol><p><strong>Proprietary Rights</strong></p><ol start=\"4\"><li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li></ol><p><strong>Restrictions on Use</strong></p><ol start=\"5\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO. </li></ol><p>6A. If you distribute or otherwise share the Contents, you must:<br />(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br />i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br />ii. a copyright notice; and<br />iii. a notice that refers to these Terms of Use; and<br />(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO. <strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p><ol start=\"7\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO. </li></ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use. </p><p><strong>Disclaimer of Warranties and Liability</strong></p><ol start=\"10\"><li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br />(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br />(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) any loss of access to or use of this Site, howsoever caused;<br />(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br />(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br />(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li></ol><p><strong>Indemnity</strong></p><ol start=\"12\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) your use of the Contents and any materials developed based on the Contents; and/or<br />(c) your breach of any of these Terms of Use.</li></ol><p><strong>No Representations</strong></p><ol start=\"13\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br />(a) ESIGO’s statutory duties, functions and powers; and<br />(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li><li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li></ol><p><strong>Availability and Right of Access</strong></p><ol start=\"17\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li><li>You agree that you will not:<br />(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br />(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br />(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li></ol><p><strong>Hyperlinks from This Site to Third Party Websites</strong></p><ol start=\"21\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li></ol><p><strong>Hyperlinks to This Website from Third Party Websites</strong></p><ol start=\"23\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li></ol><p><strong>Permission for Use</strong></p><ol start=\"29\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li></ol><p><strong>Governing Law</strong></p><ol start=\"31\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li></ol><p> </p>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:29:39','2023-11-17 08:29:39','',7963,'https://esigo.co/?p=7972',0,'revision','',0),(7973,1,'2023-11-17 16:29:39','2023-11-17 08:29:39','<p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">General</strong><br></p>\n<ol>\n<li>We thank you for visiting&nbsp;<u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u>&nbsp;(“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li>\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li>\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li>\n</ol>\n<p><strong>Proprietary Rights</strong></p>\n<ol start=\"4\">\n<li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li>\n</ol>\n<p><strong>Restrictions on Use</strong></p>\n<ol start=\"5\">\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li>\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;</li>\n</ol>\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p>\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p>\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p>\n<ol start=\"7\">\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li>\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li>\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;</li>\n</ol>\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p>\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;</p>\n<p><strong>Disclaimer of Warranties and Liability</strong></p>\n<ol start=\"10\">\n<li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li>\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li>\n</ol>\n<p><strong>Indemnity</strong></p>\n<ol start=\"12\">\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and/or<br>(c) your breach of any of these Terms of Use.</li>\n</ol>\n<p><strong>No Representations</strong></p>\n<ol start=\"13\">\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br>(a) ESIGO’s statutory duties, functions and powers; and<br>(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li>\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li>\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li>\n<li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li>\n</ol>\n<p><strong>Availability and Right of Access</strong></p>\n<ol start=\"17\">\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li>\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li>\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li>\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li>\n</ol>\n<p><strong>Hyperlinks from This Site to Third Party Websites</strong></p>\n<ol start=\"21\">\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li>\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li>\n</ol>\n<p><strong>Hyperlinks to This Website from Third Party Websites</strong></p>\n<ol start=\"23\">\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li>\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li>\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li>\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li>\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li>\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li>\n</ol>\n<p><strong>Permission for Use</strong></p>\n<ol start=\"29\">\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li>\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li>\n</ol>\n<p><strong>Governing Law</strong></p>\n<ol start=\"31\">\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li>\n</ol>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:29:39','2023-11-17 08:29:39','',7963,'https://esigo.co/?p=7973',0,'revision','',0),(7974,1,'2023-11-17 16:30:52','2023-11-17 08:30:52','<p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">General</strong><br></p>\n<ol>\n<li>We thank you for visiting&nbsp;<u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u>&nbsp;(“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li>\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li>\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li>\n</ol>\n<p><strong>Proprietary Rights</strong></p>\n<ol start=\"4\">\n<li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li>\n</ol>\n<p><strong>Restrictions on Use</strong></p>\n<ol start=\"5\">\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li>\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;</li>\n</ol>\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p>\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p>\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p>\n<ol start=\"7\">\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li>\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li>\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;</li>\n</ol>\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p>\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;</p>\n<p><strong>Disclaimer of Warranties and Liability</strong></p>\n<ol start=\"10\">\n<li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li>\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li>\n</ol>\n<p><strong>Indemnity</strong></p>\n<ol start=\"12\">\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and/or<br>(c) your breach of any of these Terms of Use.</li>\n</ol>\n<p><strong>No Representations</strong></p>\n<ol start=\"13\">\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br>(a) ESIGO’s statutory duties, functions and powers; and<br>(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li>\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li>\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li>\n<li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li>\n</ol>\n<p><strong>Availability and Right of Access</strong></p>\n<ol start=\"17\">\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li>\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li>\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li>\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li>\n</ol>\n<p><strong>Hyperlinks from This Site to Third Party Websites</strong></p>\n<ol start=\"21\">\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li>\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li>\n</ol>\n<p><strong>Hyperlinks to This Website from Third Party Websites</strong></p>\n<ol start=\"23\">\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li>\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li>\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li>\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li>\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li>\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li>\n</ol>\n<p><strong>Permission for Use</strong></p>\n<ol start=\"29\">\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li>\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li>\n</ol>\n<p><strong>Governing Law</strong></p>\n<ol start=\"31\">\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li>\n</ol>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:30:52','2023-11-17 08:30:52','',7963,'https://esigo.co/?p=7974',0,'revision','',0),(7975,1,'2023-11-17 16:30:52','2023-11-17 08:30:52','<p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">General</strong><br></p>\n<ol>\n<li>We thank you for visiting&nbsp;<u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u>&nbsp;(“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li>\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li>\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li>\n</ol>\n<p><strong>Proprietary Rights</strong></p>\n<ol start=\"4\">\n<li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li>\n</ol>\n<p><strong>Restrictions on Use</strong></p>\n<ol start=\"5\">\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li>\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;</li>\n</ol>\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p>\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p>\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p>\n<ol start=\"7\">\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li>\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li>\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;</li>\n</ol>\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p>\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;</p>\n<p><strong>Disclaimer of Warranties and Liability</strong></p>\n<ol start=\"10\">\n<li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li>\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li>\n</ol>\n<p><strong>Indemnity</strong></p>\n<ol start=\"12\">\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and/or<br>(c) your breach of any of these Terms of Use.</li>\n</ol>\n<p><strong>No Representations</strong></p>\n<ol start=\"13\">\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br>(a) ESIGO’s statutory duties, functions and powers; and<br>(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li>\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li>\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li>\n<li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li>\n</ol>\n<p><strong>Availability and Right of Access</strong></p>\n<ol start=\"17\">\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li>\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li>\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li>\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li>\n</ol>\n<p><strong>Hyperlinks from This Site to Third Party Websites</strong></p>\n<ol start=\"21\">\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li>\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li>\n</ol>\n<p><strong>Hyperlinks to This Website from Third Party Websites</strong></p>\n<ol start=\"23\">\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li>\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li>\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li>\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li>\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li>\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li>\n</ol>\n<p><strong>Permission for Use</strong></p>\n<ol start=\"29\">\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li>\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li>\n</ol>\n<p><strong>Governing Law</strong></p>\n<ol start=\"31\">\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li>\n</ol>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:30:52','2023-11-17 08:30:52','',7963,'https://esigo.co/?p=7975',0,'revision','',0),(7976,1,'2023-11-17 16:30:52','2023-11-17 08:30:52','<p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">General</strong><br></p>\n<ol>\n<li>We thank you for visiting&nbsp;<u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u>&nbsp;(“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li>\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li>\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li>\n</ol>\n<p><strong>Proprietary Rights</strong></p>\n<ol start=\"4\">\n<li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li>\n</ol>\n<p><strong>Restrictions on Use</strong></p>\n<ol start=\"5\">\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li>\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;</li>\n</ol>\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p>\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p>\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p>\n<ol start=\"7\">\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li>\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li>\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;</li>\n</ol>\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p>\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;</p>\n<p><strong>Disclaimer of Warranties and Liability</strong></p>\n<ol start=\"10\">\n<li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li>\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li>\n</ol>\n<p><strong>Indemnity</strong></p>\n<ol start=\"12\">\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and/or<br>(c) your breach of any of these Terms of Use.</li>\n</ol>\n<p><strong>No Representations</strong></p>\n<ol start=\"13\">\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br>(a) ESIGO’s statutory duties, functions and powers; and<br>(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li>\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li>\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li>\n<li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li>\n</ol>\n<p><strong>Availability and Right of Access</strong></p>\n<ol start=\"17\">\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li>\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li>\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li>\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li>\n</ol>\n<p><strong>Hyperlinks from This Site to Third Party Websites</strong></p>\n<ol start=\"21\">\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li>\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li>\n</ol>\n<p><strong>Hyperlinks to This Website from Third Party Websites</strong></p>\n<ol start=\"23\">\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li>\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li>\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li>\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li>\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li>\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li>\n</ol>\n<p><strong>Permission for Use</strong></p>\n<ol start=\"29\">\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li>\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li>\n</ol>\n<p><strong>Governing Law</strong></p>\n<ol start=\"31\">\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li>\n</ol>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:30:52','2023-11-17 08:30:52','',7963,'https://esigo.co/?p=7976',0,'revision','',0),(7977,1,'2023-11-17 16:31:14','2023-11-17 08:31:14','<p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">General</strong><br></p>\n<ol>\n<li>We thank you for visiting&nbsp;<u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u>&nbsp;(“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li>\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li>\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li>\n</ol>\n<p><strong>Proprietary Rights</strong></p>\n<ol start=\"4\">\n<li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li>\n</ol>\n<p><strong>Restrictions on Use</strong></p>\n<ol start=\"5\">\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li>\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;</li>\n</ol>\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p>\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p>\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p>\n<ol start=\"7\">\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li>\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li>\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;</li>\n</ol>\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p>\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;</p>\n<p><strong>Disclaimer of Warranties and Liability</strong></p>\n<ol start=\"10\">\n<li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li>\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li>\n</ol>\n<p><strong>Indemnity</strong></p>\n<ol start=\"12\">\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and/or<br>(c) your breach of any of these Terms of Use.</li>\n</ol>\n<p><strong>No Representations</strong></p>\n<ol start=\"13\">\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br>(a) ESIGO’s statutory duties, functions and powers; and<br>(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li>\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li>\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li>\n<li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li>\n</ol>\n<p><strong>Availability and Right of Access</strong></p>\n<ol start=\"17\">\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li>\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li>\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li>\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li>\n</ol>\n<p><strong>Hyperlinks from This Site to Third Party Websites</strong></p>\n<ol start=\"21\">\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li>\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li>\n</ol>\n<p><strong>Hyperlinks to This Website from Third Party Websites</strong></p>\n<ol start=\"23\">\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li>\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li>\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li>\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li>\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li>\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li>\n</ol>\n<p><strong>Permission for Use</strong></p>\n<ol start=\"29\">\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li>\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li>\n</ol>\n<p><strong>Governing Law</strong></p>\n<ol start=\"31\">\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li>\n</ol>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:31:14','2023-11-17 08:31:14','',7963,'https://esigo.co/?p=7977',0,'revision','',0),(7978,1,'2023-11-17 16:31:15','2023-11-17 08:31:15','<p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">General</strong><br></p>\n<ol>\n<li>We thank you for visiting&nbsp;<u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u>&nbsp;(“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li>\n<li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li>\n<li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li>\n</ol>\n<p><strong>Proprietary Rights</strong></p>\n<ol start=\"4\">\n<li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li>\n</ol>\n<p><strong>Restrictions on Use</strong></p>\n<ol start=\"5\">\n<li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li>\n<li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO.&nbsp;</li>\n</ol>\n<p>6A. If you distribute or otherwise share the Contents, you must:<br>(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br>i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br>ii. a copyright notice; and<br>iii. a notice that refers to these Terms of Use; and<br>(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p>\n<p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p>\n<p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO.&nbsp;<strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p>\n<ol start=\"7\">\n<li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li>\n<li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li>\n<li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO.&nbsp;</li>\n</ol>\n<p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p>\n<p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use.&nbsp;</p>\n<p><strong>Disclaimer of Warranties and Liability</strong></p>\n<ol start=\"10\">\n<li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br>(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br>(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li>\n<li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) any loss of access to or use of this Site, howsoever caused;<br>(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br>(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br>(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li>\n</ol>\n<p><strong>Indemnity</strong></p>\n<ol start=\"12\">\n<li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br>(a) your access to or use of this Site;<br>(b) your use of the Contents and any materials developed based on the Contents; and/or<br>(c) your breach of any of these Terms of Use.</li>\n</ol>\n<p><strong>No Representations</strong></p>\n<ol start=\"13\">\n<li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br>(a) ESIGO’s statutory duties, functions and powers; and<br>(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li>\n<li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li>\n<li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li>\n<li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li>\n</ol>\n<p><strong>Availability and Right of Access</strong></p>\n<ol start=\"17\">\n<li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li>\n<li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li>\n<li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li>\n<li>You agree that you will not:<br>(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br>(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br>(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li>\n</ol>\n<p><strong>Hyperlinks from This Site to Third Party Websites</strong></p>\n<ol start=\"21\">\n<li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li>\n<li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li>\n</ol>\n<p><strong>Hyperlinks to This Website from Third Party Websites</strong></p>\n<ol start=\"23\">\n<li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li>\n<li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li>\n<li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li>\n<li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li>\n<li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li>\n<li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li>\n</ol>\n<p><strong>Permission for Use</strong></p>\n<ol start=\"29\">\n<li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li>\n<li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li>\n</ol>\n<p><strong>Governing Law</strong></p>\n<ol start=\"31\">\n<li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li>\n</ol>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:31:15','2023-11-17 08:31:15','',7963,'https://esigo.co/?p=7978',0,'revision','',0),(7979,1,'2023-11-17 16:31:15','2023-11-17 08:31:15','<p><strong style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; text-align: var(--bs-body-text-align);\">General</strong></p><ol><li>We thank you for visiting <u><a href=\"https://esigo.futuremediatrix.com\">www.esigo.co</a></u> (“this Site\"). This Site is the official website of the ESIGO (Asia) Pte Ltd (\"ESIGO\"). Your access and use of this Site constitutes your acceptance and agreement to be bound by these terms and conditions of use (“Terms of Use”). If you do not consent to be bound by these Terms of Use, please discontinue your access and do not use this Site.</li><li>In case of any violation of these Terms of Use, ESIGO reserves the right to seek all remedies available under the law and in equity for such violations. These Terms of Use apply in respect of any and all visits to this Site, both now and in the future. No provision in these Terms of Use will be waived and no failure to comply consented to unless expressly agreed to by ESIGO.</li><li>ESIGO may, from time to time and at its sole and absolute discretion, amend these Terms of Use without prior notice. The amended Terms of Use will be posted on this Site. Your access and use of this Site after the amended Terms of Use have been posted, will constitute your acceptance and agreement to be bound by the amended Terms of Use. For the avoidance of doubt, references to these \"Terms of Use\" shall include such Terms of Use as amended from time to time by ESIGO and posted on this Site.</li></ol><p><strong>Proprietary Rights</strong></p><ol start=\"4\"><li>All materials contained in this Site (“the Contents\"), including without limitation text, images, music, computer programmes and all other kinds of works, are protected by applicable copyright, trademark and/or other intellectual property laws. All titles, rights and/or interests in the Contents are owned by, licensed to or controlled by ESIGO.</li></ol><p><strong>Restrictions on Use</strong></p><ol start=\"5\"><li>You may only access and use this Site and the Contents in the manner permitted in these Terms of Use.</li><li>You may use, hyperlink, copy and distribute the Contents found on this Site for personal, internal, non-commercial, informational, educational, compliance and/or training purposes only. You may download copies of the Contents onto a computer for such purposes provided that you keep intact all accompanying copyright and other proprietary notices. Except as so permitted, you may not display, distribute or otherwise use any of the Contents found on this Site for monetary compensation unless you have obtained specific prior written permission from ESIGO. </li></ol><p>6A. If you distribute or otherwise share the Contents, you must:<br />(a) retain the following, to the extent they are supplied by ESIGO with the Contents:<br />i. identification of the creator(s) of the Contents and any others designated to receive attribution;<br />ii. a copyright notice; and<br />iii. a notice that refers to these Terms of Use; and<br />(b) indicate that such use of the Contents by you is licensed under these Terms of Use, and include the text of, or the hyperlink to, these Terms of Use.</p><p>6B. To the extent that these Terms of Use permit you to copy the Contents or part thereof, you shall remain solely responsible for ensuring that such copies, including materials developed based on the Contents, are fit for purpose. The ESIGO reserves the right to revise, update or otherwise modify the Contents from time to time. You shall remain solely responsible for ensuring that you are aware of any changes to the Contents and that such copies, including materials developed based on the Contents, are updated where appropriate.</p><p>6C. Nothing in these Terms of Use constitutes or may be construed as permission to assert or imply that you are, or your use of the Contents is, connected with, sponsored or endorsed by the ESIGO. <strong>You shall not claim or represent that any materials created by you and/or third parties are developed or published on behalf of, in collaboration with, or in partnership with ESIGO.</strong></p><ol start=\"7\"><li>Unless expressly permitted by these Terms of Use, you may not reproduce, publish, upload, display, transmit or otherwise distribute this Site or any of the Contents in any manner or form, without the prior written permission of ESIGO and (where relevant) ESIGO’s third party suppliers. You acknowledge that any use of this Site or the Contents otherwise than in accordance with these Terms of Use will constitute a violation of the relevant intellectual property rights subsisting therein.</li><li>Modification of any of the Contents or use of the Contents for any other purpose will be a violation of ESIGO’s copyright and other intellectual property rights. Graphics and images on this Site are protected by copyright and may not be reproduced or appropriated in any manner without the prior written permission of their respective copyright owners.</li><li>The design and layout of this Site is protected by intellectual property and other laws, and may not be copied or imitated in whole or in part. No logo, graphic, sound, image or search engine from this Site may be copied or transmitted unless with the prior express permission of ESIGO. </li></ol><p>9A. These Terms of Use grant only permissions under copyright. Patent and trademark rights, to the extent applicable, are not licensed under these Terms of Use. Specifically, you shall not use any trademark, acronym, words, representation, symbol or logo that is identified with or belongs to ESIGO.</p><p>9B. The rights and permissions granted to you in these Terms of Use shall terminate automatically if you fail to comply with any part of these Terms of Use. Where such rights and permissions have so terminated, they reinstate only upon express reinstatement by ESIGO. For the avoidance of doubt, this paragraph 9B is without prejudice to any right ESIGO may have to seek remedies for breaches of these Terms of Use. </p><p><strong>Disclaimer of Warranties and Liability</strong></p><ol start=\"10\"><li>The Contents of this Site are provided on an \"as-is\" basis. While ESIGO has made every reasonable effort to ensure that the Contents on this Site have been obtained from reliable sources, ESIGO does not make any representations or warranties whatsoever, and to the fullest extent permitted by law, ESIGO hereby disclaims all express, implied and/or statutory warranties of any kind to you or any third party, howsoever arising and whether arising from usage or custom or trade or by operation of law or otherwise, including without limitation to:<br />(a) any representations or warranties as to the accuracy, completeness, correctness, currency, reliability, timeliness, non-infringement, title, merchantability, quality or fitness for any particular purpose of the Contents of this Site; and<br />(b) any representations or warranties that the Contents and functions available on this Site shall be error-free or shall be available without delay or interruption, or that any defect on this Site shall be rectified or corrected, or that this Site, the Contents and the hosting servers are and will be free of all viruses, other malicious, destructive or corrupting code, programme or macro, and/or any other harmful elements.</li><li>ESIGO shall not be responsible or liable to you or any third party for any errors or omissions, or for the results obtained or consequences arising from the use of any of the Contents, any damage or loss whatsoever and howsoever caused, including without limitation, any direct or indirect, special or consequential damages, loss of income, revenue or profits, lost or damaged data, or damage to your computer, software, server or any other kind of property, howsoever arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) any loss of access to or use of this Site, howsoever caused;<br />(c) any inaccuracy or incompleteness in, or errors or omissions in the transmission of, the Contents;<br />(d) any delay or interruption in the transmission of the Contents on this Site, whether caused by delay or interruption in transmission over the Internet or otherwise; or<br />(e) any decision made or action taken by you or any third party in reliance upon the Contents, regardless of whether ESIGO has been advised of the possibility of such damage or loss.</li></ol><p><strong>Indemnity</strong></p><ol start=\"12\"><li>You hereby agree to indemnify ESIGO and hold ESIGO harmless from and against any and all claims, losses, liabilities, costs and expenses (including but not limited to legal costs and expenses on a full indemnity basis) made against or suffered or incurred by ESIGO however arising directly or indirectly from:<br />(a) your access to or use of this Site;<br />(b) your use of the Contents and any materials developed based on the Contents; and/or<br />(c) your breach of any of these Terms of Use.</li></ol><p><strong>No Representations</strong></p><ol start=\"13\"><li>Without prejudice to the generality of the disclaimers set out above, you agree that the Contents of this Site, including but not limited to any information relating to –<br />(a) ESIGO’s statutory duties, functions and powers; and<br />(b) ESIGO’s regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments, shall not be construed as constituting any promise or representation by ESIGO to you or any third party that ESIGO will or will not adopt any particular course of action, or confer any particular benefit upon you or any third party. The Contents of this Site shall not preclude, limit or constrain ESIGO’s exercise of its rights, powers and discretion in any way nor compel, require or oblige ESIGO to exercise its rights, powers and discretion in any particular manner or to achieve any particular outcome.</li><li>You further agree that you shall not rely on any Contents of this Site to claim or assert any form of legitimate expectation against ESIGO, whether procedural or substantive in nature, in respect of any action that ESIGO may or may not take in the exercise of its discretion as a public authority.</li><li>ESIGO reserves the right to change, modify, add to, derogate from or vary its position in respect of any regulatory policies, frameworks, projects, initiatives, plans, schemes, objectives and instruments referred to on this Site at any time in ESIGO’s sole and absolute discretion without prior notice to you.</li><li>You shall obtain your own professional and/or legal advice and conduct all necessary due diligence, including but not limited to making such other investigations or seeking clarifications as may be appropriate, as regards any decision or action that you intend to take in relation to any matter concerning the Contents of this Site.</li></ol><p><strong>Availability and Right of Access</strong></p><ol start=\"17\"><li>ESIGO reserves the right to update or modify this Site from time to time. ESIGO may suspend the operation of this Site for any period of time without any prior notice.</li><li>ESIGO further reserves the right to deny or restrict access to this Site by any person, or to block access from a particular internet address to this Site, at any time, without prior notice and without ascribing any reasons whatsoever.</li><li>This Site and the Contents may be modified, deleted, edited or withdrawn by ESIGO at its sole and absolute discretion and at any time without prior notice. ESIGO reserves the right to update or modify this website from time to time. ESIGO further reserves all rights to deny or restrict access to this website to any particular person, or to block access from a particular Internet address to this website, at any time, without ascribing any reasons whatsoever.</li><li>You agree that you will not:<br />(a) use any robot, spider, other automatic device, or manual process to monitor or copy any pages within this Site or the Contents without ESIGO\'s prior written permission;<br />(b) use any device, software or routine to interfere or attempt to interfere with the proper working of this Site; and<br />(c) take any action that imposes an unreasonable or disproportionately large load on ESIGO\'s hosting servers.</li></ol><p><strong>Hyperlinks from This Site to Third Party Websites</strong></p><ol start=\"21\"><li>This Site contains hyperlinks to third party websites which are not maintained or operated by ESIGO. ESIGO is not responsible for the contents of such other websites and does not endorse the opinions or views expressed in them. ESIGO has no control over and cannot guarantee the accessibility or proper functioning of those websites. ESIGO shall not be liable for any damage or loss whatsoever arising from your access to such other websites. Use of such hyperlinks and access to those websites are entirely at your own risk.</li><li>Hyperlinks to third party websites are provided for your convenience and may be removed or replaced by ESIGO at its sole discretion. The inclusion of any hyperlink does not imply endorsement by ESIGO of such websites. Under no circumstances shall ESIGO be regarded as associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on such other websites to which this Site is hyperlinked.</li></ol><p><strong>Hyperlinks to This Website from Third Party Websites</strong></p><ol start=\"23\"><li>Save for situations expressly permitted in these Terms of Use, you may not frame this Site or any part thereof, cache or create hyperlinks to any part of this Site or any of the Contents, without the prior written permission of ESIGO and (where relevant) ESIGO\'s third party suppliers.</li><li>ESIGO reserves the right to remove or disable any unauthorised hyperlinks to or any unauthorised frames of this Site or the Contents, appearing on any other website.</li><li>You may hyperlink to the Home Page of this Site, upon prior notification to ESIGO in writing. You must make a specific request for, and secure permission from ESIGO prior to hyperlinking to, or framing, this Site or any of the Contents, or engaging in similar activities. ESIGO reserves the right to impose conditions when permitting any hyperlinking to, or framing of this Site or any of the Contents.</li><li>By framing or creating hyperlinks to this Site or any of the Contents, you agree to be bound by these Terms of Use. If you do not agree to be bound by, these Terms of Use, you must immediately remove all frames of, and hyperlinks to, this Site and the Contents. This is deemed to be the case even after the posting of any changes or modifications to these Terms of Use. If you do not accept such revised Terms of Use, you must discontinue linking to, or framing of this Site or any of the Contents.</li><li>Under no circumstances shall ESIGO be considered to be associated or affiliated in any manner whatsoever with any marks, logos, insignia or other devices used or appearing on websites which hyperlink to this Site or any of the Contents.</li><li>ESIGO reserves the right to remove or disable any hyperlinks to, or any frames of any third party website, if such hyperlinks or frames are on websites containing any information, names, contents or other materials which, in the sole and absolute opinion of ESIGO, is inappropriate, profane, defamatory, infringing, obscene, indecent or otherwise objectionable, or violates any written law or is otherwise unlawful, or is an infringement of any applicable intellectual property rights, proprietary, publicity or other rights.</li></ol><p><strong>Permission for Use</strong></p><ol start=\"29\"><li>Where permission is required by these Terms of Use for use of this Site or the Contents, you may apply for permission by writing to ESIGO at 8 Ubi Road 2 #06-31 Singapore 408538.</li><li>ESIGO may, at its sole and absolute discretion, grant or refuse permission to use this Site or the Contents, and impose such conditions for the use of this Site or the Contents as it deems fit.</li></ol><p><strong>Governing Law</strong></p><ol start=\"31\"><li>These Terms of Use shall be governed by and construed in accordance with the laws of the Republic of Singapore, and you agree to submit to the non-exclusive jurisdiction of the courts of Singapore.</li></ol>','Terms of Use','','inherit','closed','closed','','7963-revision-v1','','','2023-11-17 16:31:15','2023-11-17 08:31:15','',7963,'https://esigo.co/?p=7979',0,'revision','',0),(7982,1,'2023-12-19 18:50:13','2023-12-19 10:50:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p><strong>- Jakarta<br /></strong>ITC Roxy Mas Blok C1, <br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:50:13','2023-12-19 10:50:13','',30,'https://esigo.co/?p=7982',0,'revision','',0),(7983,1,'2023-12-19 18:50:13','2023-12-19 10:50:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p><strong>- Shenzhen<br /></strong>11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p><strong>- Taipei<br /></strong>3F.-13, No. 79,<br />Sec. 1, Xintai 5th Rd., Xizhi Dist.,<br />New Taipei City 22101, Republic of China</p><p><strong>- Taichung<br /></strong>4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p><strong>- Jakarta<br /></strong>ITC Roxy Mas Blok C1, <br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia</p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:50:13','2023-12-19 10:50:13','',30,'https://esigo.co/?p=7983',0,'revision','',0),(7984,1,'2023-12-19 18:50:13','2023-12-19 10:50:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>- Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>- Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p> </p><p>- Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>- Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;New Taipei City 22101, Republic of China</p>\n<p><strong>- Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:50:13','2023-12-19 10:50:13','',30,'https://esigo.co/?p=7984',0,'revision','',0),(7985,1,'2023-12-19 18:51:17','2023-12-19 10:51:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>- Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>- Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p> </p><p>- Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>- Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;New Taipei City 22101, Republic of China</p>\n<p><strong>- Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:51:17','2023-12-19 10:51:17','',30,'https://esigo.co/?p=7985',0,'revision','',0),(7986,1,'2023-12-19 18:51:17','2023-12-19 10:51:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>- Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>- Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p> </p><p>- Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>- Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;New Taipei City 22101, Republic of China</p>\n<p><strong>- Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:51:17','2023-12-19 10:51:17','',30,'https://esigo.co/?p=7986',0,'revision','',0),(7987,1,'2023-12-19 18:51:17','2023-12-19 10:51:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>- Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>- Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p> </p><p>- Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>- Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; New Taipei City 22101, Republic of China</p>\n<p><strong>- Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:51:17','2023-12-19 10:51:17','',30,'https://esigo.co/?p=7987',0,'revision','',0),(7988,1,'2023-12-19 18:52:03','2023-12-19 10:52:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>- Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>- Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p> </p><p>- Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>- Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; New Taipei City 22101, Republic of China</p>\n<p><strong>- Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:52:03','2023-12-19 10:52:03','',30,'https://esigo.co/?p=7988',0,'revision','',0),(7989,1,'2023-12-19 18:52:03','2023-12-19 10:52:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>- Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>- Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p> </p><p>- Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>- Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; New Taipei City 22101, Republic of China</p>\n<p><strong>- Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:52:03','2023-12-19 10:52:03','',30,'https://esigo.co/?p=7989',0,'revision','',0),(7990,1,'2023-12-19 18:52:03','2023-12-19 10:52:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>- Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>- Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p> </p><p>- Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>- Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; New Taipei City 22101, Republic of China</p>\n<p><strong>- Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:52:03','2023-12-19 10:52:03','',30,'https://esigo.co/?p=7990',0,'revision','',0),(7991,1,'2023-12-19 18:53:34','2023-12-19 10:53:34','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>- Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>- Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p> </p><p>- Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>- Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; New Taipei City 22101, Republic of China</p>\n<p><strong>- Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:53:34','2023-12-19 10:53:34','',30,'https://esigo.co/?p=7991',0,'revision','',0),(7992,1,'2023-12-19 18:53:34','2023-12-19 10:53:34','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>- Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>- Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>- Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>- Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>- Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>- Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p> </p><p>- Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>- Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; New Taipei City 22101, Republic of China</p>\n<p><strong>- Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:53:34','2023-12-19 10:53:34','',30,'https://esigo.co/?p=7992',0,'revision','',0),(7993,1,'2023-12-19 18:53:34','2023-12-19 10:53:34','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>~ Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; New Taipei City 22101, Republic of China</p>\n<p><strong>~ Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2023-12-19 18:53:34','2023-12-19 10:53:34','',30,'https://esigo.co/?p=7993',0,'revision','',0),(7996,1,'2024-02-26 16:44:42','2024-02-26 08:44:42','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>~ Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; New Taipei City 22101, Republic of China</p>\n<p><strong>~ Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 16:44:42','2024-02-26 08:44:42','',30,'https://esigo.co/?p=7996',0,'revision','',0),(7997,1,'2024-02-26 16:44:43','2024-02-26 08:44:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>~ Taipei<br>3F.-13, No. 79,<br>Sec. 1, Xintai 5th Rd., Xizhi Dist.,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; New Taipei City 22101, Republic of China</p>\n<p><strong>~ Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 16:44:43','2024-02-26 08:44:43','',30,'https://esigo.co/?p=7997',0,'revision','',0),(7998,1,'2024-02-26 16:44:43','2024-02-26 08:44:43','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>~ Taipei<br></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">3F.-13, No. 79,<o:p></o:p></p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<o:p></o:p></p>\n<p>New Taipei City 22101, Republic of China</p><p><strong>~ Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 16:44:43','2024-02-26 08:44:43','',30,'https://esigo.co/?p=7998',0,'revision','',0),(7999,1,'2024-02-26 16:48:18','2024-02-26 08:48:18','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>~ Taipei<br></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">3F.-13, No. 79,<o:p></o:p></p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<o:p></o:p></p>\n<p>New Taipei City 22101, Republic of China</p><p><strong>~ Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 16:48:18','2024-02-26 08:48:18','',30,'https://esigo.co/?p=7999',0,'revision','',0),(8000,1,'2024-02-26 16:48:19','2024-02-26 08:48:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p>~ Taipei<br></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">3F.-13, No. 79,<o:p></o:p></p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<o:p></o:p></p>\n<p>New Taipei City 22101, Republic of China</p><p><strong>~ Taichung<br></strong>4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China</p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 16:48:19','2024-02-26 08:48:19','',30,'https://esigo.co/?p=8000',0,'revision','',0),(8001,1,'2024-02-26 16:48:19','2024-02-26 08:48:19','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br></b>3F.-13, No. 79,<u1:p></u1:p><o:p></o:p></p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<u1:p></u1:p><o:p></o:p></p>\n<p>New Taipei City 22101, Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong><o:p></o:p></p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\n</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<o:p></o:p></p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 16:48:19','2024-02-26 08:48:19','',30,'https://esigo.co/?p=8001',0,'revision','',0),(8002,1,'2024-02-26 16:58:17','2024-02-26 08:58:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br></b>3F.-13, No. 79,<u1:p></u1:p><o:p></o:p></p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<u1:p></u1:p><o:p></o:p></p>\n<p>New Taipei City 22101, Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong><o:p></o:p></p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\n</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<o:p></o:p></p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 16:58:17','2024-02-26 08:58:17','',30,'https://esigo.co/?p=8002',0,'revision','',0),(8003,1,'2024-02-26 16:58:17','2024-02-26 08:58:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br></b>3F.-13, No. 79,<u1:p></u1:p><o:p></o:p></p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,<u1:p></u1:p><o:p></o:p></p>\n<p>New Taipei City 22101, Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong><o:p></o:p></p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\n</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br>Xitun Dist.,<br>Taichung City 40766, Republic of China<o:p></o:p></p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 16:58:17','2024-02-26 08:58:17','',30,'https://esigo.co/?p=8003',0,'revision','',0),(8004,1,'2024-02-26 16:58:17','2024-02-26 08:58:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br />11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br /></b>3F.-13, No. 79,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p><p>New Taipei City 22101, Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p> </p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 16:58:17','2024-02-26 08:58:17','',30,'https://esigo.co/?p=8004',0,'revision','',0),(8005,1,'2024-02-26 17:06:48','2024-02-26 09:06:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br />11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br /></b>3F.-13, No. 79,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p><p>New Taipei City 22101, Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p> </p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 17:06:48','2024-02-26 09:06:48','',30,'https://esigo.co/?p=8005',0,'revision','',0),(8006,1,'2024-02-26 17:06:48','2024-02-26 09:06:48','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br />11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br /></b>3F.-13, No. 79,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p><p>New Taipei City 22101, Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p> </p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 17:06:48','2024-02-26 09:06:48','',30,'https://esigo.co/?p=8006',0,'revision','',0),(8007,1,'2024-02-26 17:06:49','2024-02-26 09:06:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br></b>3F.-13, No. 79,</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p>\n<p>New Taipei City 22101, Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong><o:p></o:p></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\n4F., No.188 Zhonggong 2nd\nRd.,<br>\nXitun Dist.,<br>\nTaichung City 40766, Republic of China<br></p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 17:06:49','2024-02-26 09:06:49','',30,'https://esigo.co/?p=8007',0,'revision','',0),(8008,1,'2024-02-26 17:07:31','2024-02-26 09:07:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br></b>3F.-13, No. 79,</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p>\n<p>New Taipei City 22101, Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong><o:p></o:p></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\n4F., No.188 Zhonggong 2nd\nRd.,<br>\nXitun Dist.,<br>\nTaichung City 40766, Republic of China<br></p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 17:07:31','2024-02-26 09:07:31','',30,'https://esigo.co/?p=8008',0,'revision','',0),(8009,1,'2024-02-26 17:07:31','2024-02-26 09:07:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br>11C Xinlikang Building<br>No. 3044 Xinghai Avenue, Nanshan Street,<br>Qianhai, Shenzhen, People’s Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br></b>3F.-13, No. 79,</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p>\n<p>New Taipei City 22101, Republic of China</p>\n<p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong><o:p></o:p></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\n4F., No.188 Zhonggong 2nd\nRd.,<br>\nXitun Dist.,<br>\nTaichung City 40766, Republic of China<br></p>\n<p></p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 17:07:31','2024-02-26 09:07:31','',30,'https://esigo.co/?p=8009',0,'revision','',0),(8010,1,'2024-02-26 17:07:31','2024-02-26 09:07:31','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br />11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br /></b>3F.-13, No. 79,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p><p>New Taipei City 22101, Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p> </p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-02-26 17:07:31','2024-02-26 09:07:31','',30,'https://esigo.co/?p=8010',0,'revision','',0),(8012,1,'2024-02-26 17:18:53','2024-02-26 09:18:53','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2024-02-26 17:18:53','2024-02-26 09:18:53','',17,'https://esigo.co/?p=8012',0,'revision','',0),(8013,1,'2024-02-26 17:18:53','2024-02-26 09:18:53','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2024-02-26 17:18:53','2024-02-26 09:18:53','',17,'https://esigo.co/?p=8013',0,'revision','',0),(8014,1,'2024-02-26 17:18:53','2024-02-26 09:18:53','<!-- Start Hero -->\n        <section>\n        <a href=\"#\"></a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-1.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Unlocking Business Potential with ESIGO: Elevate Your Performance with AI-Powered Solutions!\n                            </h1>\n                            <p>\n                                Experience seamless cloud management, exceptional customer engagement, fortified security, and unified communications. Our smart monitoring empowers proactive enhancements, ensuring superior results for your business. Discover the future of success!\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-2.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                Empowering Excellence: ESIGO\'s AI-Driven Expertise at Your Service!\n                            </h1>\n                            <p>\n                                Navigate the realms of cloud, customer experience, security, and more with ESIGO. Elevate performance through actionable insights, timely reports, and unmatched support. Stay ahead with our rapid remote solutions, ensuring uninterrupted business operations.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n                        <figure style=\"background-image:url(https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png)\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/Banner-3.png\" alt=\"Slider\">\n						</figure>\n                            <h2></h2>\n                            <h1>\n                                ESIGO: Your Partner in Performance Optimization and Continuity!\n                            </h1>\n                            <p>\n                                Experience a new era of business management - AI-powered cloud solutions, enriched customer experiences, robust security, and unified communications, all orchestrated by ESIGO. Unleash growth through smart monitoring, proactive measures, and swift remote support. Your success, our commitment.\n                            </p>\n                                <a href=\"https://bizmax.laralink.com/contact/\">Get A Quote</a>\n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n					  <path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n					</svg>             \n					<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n					  <path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n					  <path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n					</svg>          \n                <svg width=\"434\" height=\"759\" viewBox=\"0 0 434 759\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M240 0H660L430 759H0L240 0Z\" fill=\"url(#paint0_linear_81_287)\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_287\" x1=\"145\" y1=\"256.5\" x2=\"484\" y2=\"738\" gradientUnits=\"userSpaceOnUse\">\n                  <stop stop-color=\"#D9D9D9\" stop-opacity=\"0\"  offset=\"none\"/>\n                  <stop offset=\"1\" stop-color=\"#004699\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n                <svg width=\"572\" height=\"572\" viewBox=\"0 0 572 572\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                  <path d=\"M572 -6.10352e-05L6.10352e-05 572L1.10293e-05 -1.10293e-05L572 -6.10352e-05Z\" fill=\"url(#paint0_linear_81_258)\" fill-opacity=\"0.7\"/>\n                  <defs>\n                  <linearGradient id=\"paint0_linear_81_258\" x1=\"388.254\" y1=\"307.69\" x2=\"-127.973\" y2=\"-227.83\" gradientUnits=\"userSpaceOnUse\">\n                  <stop offset=\"0.0457759\" stop-color=\"#18191D\" stop-opacity=\"0\"/>\n                  <stop offset=\"0.514455\" stop-color=\"#004699\" stop-opacity=\"0.35\"/>\n                  </linearGradient>\n                  </defs>\n                </svg>            \n        </section>\n        <!-- End Hero -->','Homepage V1','','inherit','closed','closed','','17-revision-v1','','','2024-02-26 17:18:53','2024-02-26 09:18:53','',17,'https://esigo.co/?p=8014',0,'revision','',0),(8017,1,'2024-03-28 16:49:20','2024-03-28 08:49:20','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br />11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br /></b>3F.-13, No. 79,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p><p>New Taipei City 22101, Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p> </p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-03-28 16:49:20','2024-03-28 08:49:20','',30,'https://esigo.co/?p=8017',0,'revision','',0),(8018,1,'2024-03-28 16:49:20','2024-03-28 08:49:20','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p><strong>~ Hong Kong<br /></strong>Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong</p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />No. 40 C, Jln Desa Bakti, Taman Desa,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Off Jalan Klang Lama, <br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58100, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br />11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br /></b>3F.-13, No. 79,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p><p>New Taipei City 22101, Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p> </p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-03-28 16:49:20','2024-03-28 08:49:20','',30,'https://esigo.co/?p=8018',0,'revision','',0),(8019,1,'2024-03-28 16:49:20','2024-03-28 08:49:20','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"512\" height=\"512\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png\" alt=\"icon-logo\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo.png 512w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-300x300.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/08/icon-logo-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_img.jpeg\" alt=\"Thumb\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_shape_1-1.png\" alt=\"Shape\">\n		  <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/experience_icon-1.svg\" alt=\"Icon\">\n		  <h3>\n			+\n		  </h3>\n		  <h2>Work Experience</h2>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">About Us</h3>\n                  <h2  style=\"color:#18191d\">Who We Are</h2>\n				  The company is started by investors with deep experience in the voice and data networks industry since the 1990s. The team comprises veterans (each having spent decades in the industry). Heading the team is an established leader who has grown and managed sales channels and served esteemed customers while working for Avaya, Audiocodes, Verint and Extreme Networks. The team envisioned ESIGO to be a truly strong, advanced, AI-powered managed service &amp; solution provider globally.\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Vision</h2>\n				  <p>To become the leading and most preferred, Ai-Powered managed service and solution provider globally</p>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Mission</h2>\n				  <ul><li style=\"text-align: left;\">Serve and uplift our customer values</li><li style=\"text-align: left;\">Enhance professionalism and intelligent services</li><li style=\"text-align: left;\">Offer comprehensive smart Ai-Powered solutions</li><li style=\"text-align: left;\">Deliver faster and smarter services with dedication &amp; commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\">Values</h2>\n				  <ul><li style=\"text-align: left;\">People</li><li style=\"text-align: left;\">Passion</li><li style=\"text-align: left;\">Respect</li><li style=\"text-align: left;\">Integrity</li><li style=\"text-align: left;\">Commitment</li></ul>\n                  <h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\"></h3>\n                  <h2  style=\"color:#18191d\"></h2>\n				  <p>Businesses are experiencing a growing digital transformation trend globally. This involves using digital technologies to create new — or modify existing — business processes, culture, and customer experiences to meet changing business and market requirements.</p><p>Leveraging on and evolving from the strong standing Expert Systems Incorporation (ESI Asia), with her three decades of experience as solutions integrators and technology ambassador in APAC and having served hundreds of customers from all industry verticals, ESIGO is strategically placed to bring the managed service business to the next level by leaps and bounds.</p><p>Migration to cloud simplifies workflow, avails data at fingertips and frees businesses to conduct work anywhere and anytime. Knitting this tender fabric of technology, human factors and AI-Machine learning, ESIGO provides a truly robust, advanced yet simplified, modern approach to make the migration go EASY à la ESIGO (pronounced Easy Go).</p><p>As organisations seek to minimise capital expenditure, and make the very most of their IT budgets, customers are looking to Managed Service Providers (MSPs). This is creating a thriving market for MSPs, while opening up a whole new world of innovation, experience assurance, added security and business insights for organisations. This is where ESIGO passion lies!</p><p>Having been operating in these countries and cities Singapore, Ho Chi Minh City, Jakarta, Hong Kong, Taipei, Taichung, Shanghai and Shenzhen, ESIGO provides more leverage for our clients.</p>\n															<img width=\"912\" height=\"580\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png\" alt=\"map_final\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final.png 912w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-300x191.png 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/map_final-768x488.png 768w\" sizes=\"(max-width: 912px) 100vw, 912px\" />															\n		<p><strong>~ Singapore Experience Centre<br /></strong>8 Ubi Road 2<br />#06-31 Zervex<br />Singapore 408538</p><p>~ Singapore Office<br />33 Ubi Ave 3<br />#05-70 Vertex<br />Singapore 408868</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Bangkok</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">199 S-Oasis Tower, 15th Floor, Vibhavadi-Rangsit Rd.,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chomphon, Chatuchak,</p><p>Bangkok, Thailand 10900</p><p><strong>~ Ho Chi Minh<br /></strong>62A Pham Ngoc Thach,<br />Vo Thi Sau Ward, District 3,<br />Ho Chi Minh City</p><p> </p><p>~ Hong Kong<br />Unit F, 22/F, MG Tower,<br />133 Hoi Bun Road, Kwun Tong,<br />Kowloon, Hong Kong<br /></p><p>~ Jakarta<br />ITC Roxy Mas Blok C1,<br />No. 31 Jl Hasyim Ashari <br />Jakarta 10150, Indonesia<strong><br /></strong></p><p>~ Kuala Lumpur<br />Level 18, Unit 15, Menara K1, No. 1<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Lorong 3/137C, Off Jalan Kelang Lama,<br style=\"font-family: Roboto, sans-serif; font-size: 16px;\" />Kuala Lumpur 58000, Malaysia</p><p><strong>~ Shanghai<br /></strong>16/F, Block J, Jiali Building,<br />No. 2 Long, 1228 YanAn Road West,<br />Shanghai, People’s Republic of China</p><p> </p><p>~ Shenzhen<br />11C Xinlikang Building<br />No. 3044 Xinghai Avenue, Nanshan Street,<br />Qianhai, Shenzhen, People’s Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>~ Taipei<br /></b>3F.-13, No. 79,</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sec. 1, Xintai 5th Rd., Xizhi Dist.,</p><p>New Taipei City 22101, Republic of China</p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong>~ Taichung</strong></p><p style=\"margin: 0cm; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">4F., No.188 Zhonggong 2nd Rd.,<br />Xitun Dist.,<br />Taichung City 40766, Republic of China</p><p> </p>','About Us','','inherit','closed','closed','','30-revision-v1','','','2024-03-28 16:49:20','2024-03-28 08:49:20','',30,'https://esigo.co/?p=8019',0,'revision','',0),(8020,1,'2024-04-03 05:10:44','2024-04-02 21:10:44','','Default Kit','','inherit','closed','closed','','8-revision-v1','','','2024-04-03 05:10:44','2024-04-02 21:10:44','',8,'https://esigo.futuremediatrix.com/?p=8020',0,'revision','',0),(8021,1,'2024-04-03 05:10:44','2024-04-02 21:10:44','','Default Kit','','inherit','closed','closed','','8-revision-v1','','','2024-04-03 05:10:44','2024-04-02 21:10:44','',8,'https://esigo.futuremediatrix.com/?p=8021',0,'revision','',0),(8022,1,'2024-04-03 05:28:55','2024-04-02 21:28:55','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','publish','closed','closed','','managed-services','','','2024-04-03 14:04:50','2024-04-03 06:04:50','',0,'https://esigo.futuremediatrix.com/?post_type=elementor_library&#038;p=8022',0,'elementor_library','',0),(8023,1,'2024-04-03 05:31:16','2024-04-02 21:31:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Cloud</h2>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 05:31:16','2024-04-02 21:31:16','',8022,'https://esigo.futuremediatrix.com/?p=8023',0,'revision','',0),(8024,1,'2024-04-03 05:31:16','2024-04-02 21:31:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 05:31:16','2024-04-02 21:31:16','',8022,'https://esigo.futuremediatrix.com/?p=8024',0,'revision','',0),(8025,1,'2024-04-03 05:35:30','2024-04-02 21:35:30','<script>\r\n	window.addEventListener(\'DOMContentLoaded\', function() {\r\n		let elements = document.querySelectorAll(\'.cs_top_nav li.showpopup\');\r\n		let popupposts = [\'8022\'];\r\n		elements.forEach(function(e, i) {\r\n			e.addEventListener(\'mouseenter\', function() {\r\n				elementorProFrontend.modules.popup.showPopup({ id: popupposts[i] });\r\n\r\n				let elementsBackdrop = document.querySelectorAll(\'.container-menu-managed-services\');\r\n				if (elementsBackdrop.length > 0) {\r\n					elementsBackdrop.forEach(function(e, i) {\r\n						e.addEventListener(\'mouseleave\', function() {\r\n							jQuery(\'body\').click();\r\n						});\r\n					});\r\n				}\r\n			});\r\n		});\r\n	});\r\n\r\n	window.addEventListener(\'scroll\', function() {\r\n		if (window.scrollY > 140) {\r\n			var event = new MouseEvent(\'click\', {\r\n				\'view\': window,\r\n				\'bubbles\': true,\r\n				\'cancelable\': true\r\n			});\r\n			document.body.dispatchEvent(event);\r\n		}\r\n	});\r\n</script>','Toggle Menu Managed Services','','publish','closed','closed','','untitled-snippet-2','','','2024-04-03 07:06:11','2024-04-02 23:06:11','',0,'https://esigo.futuremediatrix.com/?post_type=wpcode&#038;p=8025',0,'wpcode','',0),(8026,1,'2024-04-03 05:37:45','2024-04-02 21:37:45','<script>\r\n	window.addEventListener(\'DOMContentLoaded\', (event) => {\r\n		var parentElement = document.querySelector(\'.cs_top_nav\');\r\n		if (parentElement) {\r\n			var childElements = parentElement.querySelectorAll(\'li\');\r\n			if (childElements.length > 0) {\r\n				childElements[2].classList.add(\'showpopup\');\r\n			}\r\n		}\r\n	});\r\n</script>','Add Class For Menu Managed Services','','publish','closed','closed','','add-class-for-menu-managed-services','','','2024-04-03 05:52:15','2024-04-02 21:52:15','',0,'https://esigo.futuremediatrix.com/wpcode/add-class-for-menu-managed-services/',0,'wpcode','',0),(8027,1,'2024-04-03 06:02:29','2024-04-02 22:02:29','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:02:29','2024-04-02 22:02:29','',8022,'https://esigo.futuremediatrix.com/?p=8027',0,'revision','',0),(8028,1,'2024-04-03 06:02:50','2024-04-02 22:02:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:02:50','2024-04-02 22:02:50','',8022,'https://esigo.futuremediatrix.com/?p=8028',0,'revision','',0),(8029,1,'2024-04-03 06:03:25','2024-04-02 22:03:25','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:03:25','2024-04-02 22:03:25','',8022,'https://esigo.futuremediatrix.com/?p=8029',0,'revision','',0),(8030,1,'2024-04-03 06:03:59','2024-04-02 22:03:59','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:03:59','2024-04-02 22:03:59','',8022,'https://esigo.futuremediatrix.com/?p=8030',0,'revision','',0),(8032,1,'2024-04-03 06:12:57','2024-04-02 22:12:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-5e8d886\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"1\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target295643\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1769352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target388790\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1486636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Enterprise Security','','inherit','closed','closed','','7307-revision-v1','','','2024-04-03 06:12:57','2024-04-02 22:12:57','',7307,'https://esigo.futuremediatrix.com/?p=8032',0,'revision','',0),(8033,1,'2024-04-03 06:17:43','2024-04-02 22:17:43','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 06:17:43','2024-04-02 22:17:43','',32,'https://esigo.futuremediatrix.com/?p=8033',0,'revision','',0),(8034,1,'2024-04-03 06:17:43','2024-04-02 22:17:43','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/security/\">Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 06:17:43','2024-04-02 22:17:43','',32,'https://esigo.futuremediatrix.com/?p=8034',0,'revision','',0),(8035,1,'2024-04-03 06:17:43','2024-04-02 22:17:43','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 06:17:43','2024-04-02 22:17:43','',32,'https://esigo.futuremediatrix.com/?p=8035',0,'revision','',0),(8036,1,'2024-04-03 06:18:09','2024-04-02 22:18:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:18:09','2024-04-02 22:18:09','',8022,'https://esigo.futuremediatrix.com/?p=8036',0,'revision','',0),(8037,1,'2024-04-03 06:24:57','2024-04-02 22:24:57','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:24:57','2024-04-02 22:24:57','',8022,'https://esigo.futuremediatrix.com/?p=8037',0,'revision','',0),(8038,1,'2024-04-03 06:27:13','2024-04-02 22:27:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:27:13','2024-04-02 22:27:13','',8022,'https://esigo.futuremediatrix.com/?p=8038',0,'revision','',0),(8039,1,'2024-04-03 06:28:28','2024-04-02 22:28:28','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:28:28','2024-04-02 22:28:28','',8022,'https://esigo.futuremediatrix.com/?p=8039',0,'revision','',0),(8040,1,'2024-04-03 06:30:21','2024-04-02 22:30:21','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:30:21','2024-04-02 22:30:21','',8022,'https://esigo.futuremediatrix.com/?p=8040',0,'revision','',0),(8041,1,'2024-04-03 06:30:40','2024-04-02 22:30:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:30:40','2024-04-02 22:30:40','',8022,'https://esigo.futuremediatrix.com/?p=8041',0,'revision','',0),(8042,1,'2024-04-03 06:32:53','2024-04-02 22:32:53','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:32:53','2024-04-02 22:32:53','',8022,'https://esigo.futuremediatrix.com/?p=8042',0,'revision','',0),(8043,1,'2024-04-03 06:33:51','2024-04-02 22:33:51','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:33:51','2024-04-02 22:33:51','',8022,'https://esigo.futuremediatrix.com/?p=8043',0,'revision','',0),(8044,1,'2024-04-03 06:34:32','2024-04-02 22:34:32','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:34:32','2024-04-02 22:34:32','',8022,'https://esigo.futuremediatrix.com/?p=8044',0,'revision','',0),(8046,1,'2024-04-03 06:43:52','2024-04-02 22:43:52','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:43:52','2024-04-02 22:43:52','',8022,'https://esigo.futuremediatrix.com/?p=8046',0,'revision','',0),(8047,1,'2024-04-03 06:50:41','2024-04-02 22:50:41','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 06:50:41','2024-04-02 22:50:41','',8022,'https://esigo.futuremediatrix.com/?p=8047',0,'revision','',0),(8048,1,'2024-04-03 07:03:41','2024-04-02 23:03:41','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 07:03:41','2024-04-02 23:03:41','',8022,'https://esigo.futuremediatrix.com/?p=8048',0,'revision','',0),(8049,1,'2024-04-03 07:03:47','2024-04-02 23:03:47','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 07:03:47','2024-04-02 23:03:47','',8022,'https://esigo.futuremediatrix.com/?p=8049',0,'revision','',0),(8050,1,'2024-04-03 07:05:38','2024-04-02 23:05:38','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 07:05:38','2024-04-02 23:05:38','',8022,'https://esigo.futuremediatrix.com/?p=8050',0,'revision','',0),(8052,1,'2024-04-03 07:08:17','2024-04-02 23:08:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"602\" height=\"337\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/pss.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/pss.jpg 602w, https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/pss-300x168.jpg 300w\" sizes=\"(max-width: 602px) 100vw, 602px\" />															\n			<h2>Business & finance</h2>		\n		<p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions. These integrated systems enable seamless communication and coordination among first responders, law enforcement, and public safety agencies, ensuring swift and efficient responses to emergencies and threats. Through unified communication, critical information can be shared instantly across different platforms and devices, breaking down barriers between agencies and enabling collaborative decision-making. Surveillance systems play a crucial role in monitoring public spaces, identifying potential threats, and providing real-time data that enhances situational awareness. Meanwhile, command and control systems integrate this information, offering a centralised hub for decision-making and resource allocation. By leveraging advanced technologies such as artificial intelligence and data analytics, these systems can predict potential incidents, optimise response strategies, and ensure that the right resources are deployed at the right time. Together, unified communication, surveillance, and command and control systems offer a holistic approach to public safety, enhancing the ability of cities and communities to protect their citizens and respond effectively to any crisis.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1416094\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1455364\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2023633\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target759444\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Public Safety & Security','','publish','closed','closed','','public-safety-and-security','','','2024-04-09 15:05:55','2024-04-09 07:05:55','',32,'https://esigo.futuremediatrix.com/?page_id=8052',4,'page','',0),(8053,1,'2024-04-03 07:08:17','2024-04-02 23:08:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-5e8d886\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"1\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target295643\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1769352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target388790\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1486636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Public Safety & Security','','inherit','closed','closed','','8052-revision-v1','','','2024-04-03 07:08:17','2024-04-02 23:08:17','',8052,'https://esigo.futuremediatrix.com/?p=8053',0,'revision','',0),(8054,1,'2024-04-03 07:10:44','2024-04-02 23:10:44','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-5e8d886\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"1\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target295643\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1769352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target388790\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1486636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Public Safety & Security','','inherit','closed','closed','','8052-revision-v1','','','2024-04-03 07:10:44','2024-04-02 23:10:44','',8052,'https://esigo.futuremediatrix.com/?p=8054',0,'revision','',0),(8055,1,'2024-04-03 07:10:44','2024-04-02 23:10:44','<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\n<h2>All SERVICES</h2>\nMenu\n\n<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\">\n<ul id=\"menu-1-5e8d886\">\n 	<li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n 	<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n 	<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n 	<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n 	<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n</ul>\n</nav>                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">\n<h2>Have Any Query Feel Free Contact</h2>\n<a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\">\n<ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" /></p>\n\n<h2>Quick Contact</h2>\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n\n<input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n\n<textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n\n<button>Send A Message</button>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"1\"/></p>\n\n</form>\n<style>/*! elementor - v3.15.0 - 20-08-2023 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />\n<h2>Business & finance</h2>\nManaged services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats. These services provide a proactive and outsourced approach to protecting sensitive data and systems. ESIGO’s expert security specialists take charge of monitoring networks, endpoints, and data for potential vulnerabilities and suspicious activities, responding swiftly to mitigate risks and breaches. With managed security services, your businesses gain access to cutting-edge threat intelligence, continuous threat detection, and robust incident response capabilities. This not only bolsters your security posture but also ensures compliance with industry regulations and data protection standards. By outsourcing security management, organizations can focus on their core operations, confident that our dedicated team is working diligently to prevent, detect, and respond to security threats, ultimately enhancing resilience in an increasingly digital and interconnected world.\n<h2>Partners</h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">\n<h2></h2>\n<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">\n<h2></h2>\n<blockquote>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</blockquote>\n<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\n<h2>Our benefits</h2>\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.\n\nfrequently asked questions\n<h2>Questions & Answers</h2>\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target295643\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nWhat services does your business provide?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1769352\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow much do your services cost?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target388790\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nDo you offer any guarantees or refunds?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1486636\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\nHow do I get started with your services?</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.','Public Safety & Security','','inherit','closed','closed','','8052-revision-v1','','','2024-04-03 07:10:44','2024-04-02 23:10:44','',8052,'https://esigo.futuremediatrix.com/?p=8055',0,'revision','',0),(8056,1,'2024-04-03 07:10:45','2024-04-02 23:10:45','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1400619\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1327200\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1369218\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target495635\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Public Safety & Security','','inherit','closed','closed','','8052-revision-v1','','','2024-04-03 07:10:45','2024-04-02 23:10:45','',8052,'https://esigo.futuremediatrix.com/?p=8056',0,'revision','',0),(8058,1,'2024-04-03 07:11:47','2024-04-02 23:11:47',' ','','','publish','closed','closed','','8058','','','2024-04-03 07:11:47','2024-04-02 23:11:47','',32,'https://esigo.futuremediatrix.com/2024/04/03/8058/',6,'nav_menu_item','',0),(8059,1,'2024-04-03 07:15:35','2024-04-02 23:15:35','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 07:15:35','2024-04-02 23:15:35','',32,'https://esigo.futuremediatrix.com/?p=8059',0,'revision','',0),(8060,1,'2024-04-03 07:15:35','2024-04-02 23:15:35','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 07:15:35','2024-04-02 23:15:35','',32,'https://esigo.futuremediatrix.com/?p=8060',0,'revision','',0),(8061,1,'2024-04-03 07:15:35','2024-04-02 23:15:35','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Public Safety & Security</a>\n				</h2>\n              <p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 07:15:35','2024-04-02 23:15:35','',32,'https://esigo.futuremediatrix.com/?p=8061',0,'revision','',0),(8062,1,'2024-04-03 07:16:44','2024-04-02 23:16:44','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Public Safety & Security</a>\n				</h2>\n              <p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 07:16:44','2024-04-02 23:16:44','',32,'https://esigo.futuremediatrix.com/?p=8062',0,'revision','',0),(8063,1,'2024-04-03 07:16:44','2024-04-02 23:16:44','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Public Safety & Security</a>\n				</h2>\n              <p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 07:16:44','2024-04-02 23:16:44','',32,'https://esigo.futuremediatrix.com/?p=8063',0,'revision','',0),(8064,1,'2024-04-03 07:16:44','2024-04-02 23:16:44','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 07:16:44','2024-04-02 23:16:44','',32,'https://esigo.futuremediatrix.com/?p=8064',0,'revision','',0),(8065,1,'2024-04-03 07:19:14','2024-04-02 23:19:14','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 07:19:14','2024-04-02 23:19:14','',32,'https://esigo.futuremediatrix.com/?p=8065',0,'revision','',0),(8066,1,'2024-04-03 07:19:14','2024-04-02 23:19:14','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 07:19:14','2024-04-02 23:19:14','',32,'https://esigo.futuremediatrix.com/?p=8066',0,'revision','',0),(8067,1,'2024-04-03 07:19:14','2024-04-02 23:19:14','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" by Cicero, written in 45 BC.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-03 07:19:14','2024-04-02 23:19:14','',32,'https://esigo.futuremediatrix.com/?p=8067',0,'revision','',0),(8068,1,'2024-04-03 07:21:32','2024-04-02 23:21:32','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 07:21:32','2024-04-02 23:21:32','',8022,'https://esigo.futuremediatrix.com/?p=8068',0,'revision','',0),(8070,1,'2024-04-03 13:39:44','2024-04-03 05:39:44','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 13:39:44','2024-04-03 05:39:44','',8022,'https://esigo.futuremediatrix.com/?p=8070',0,'revision','',0),(8071,1,'2024-04-03 13:42:15','2024-04-03 05:42:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 13:42:15','2024-04-03 05:42:15','',8022,'https://esigo.futuremediatrix.com/?p=8071',0,'revision','',0),(8072,1,'2024-04-03 13:52:04','2024-04-03 05:52:04','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 13:52:04','2024-04-03 05:52:04','',8022,'https://esigo.futuremediatrix.com/?p=8072',0,'revision','',0),(8073,1,'2024-04-03 13:52:44','2024-04-03 05:52:44','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 13:52:44','2024-04-03 05:52:44','',8022,'https://esigo.futuremediatrix.com/?p=8073',0,'revision','',0),(8074,1,'2024-04-03 13:54:09','2024-04-03 05:54:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 13:54:09','2024-04-03 05:54:09','',8022,'https://esigo.futuremediatrix.com/?p=8074',0,'revision','',0),(8075,1,'2024-04-03 13:56:03','2024-04-03 05:56:03','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 13:56:03','2024-04-03 05:56:03','',8022,'https://esigo.futuremediatrix.com/?p=8075',0,'revision','',0),(8076,1,'2024-04-03 14:02:37','2024-04-03 06:02:37','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 14:02:37','2024-04-03 06:02:37','',8022,'https://esigo.futuremediatrix.com/?p=8076',0,'revision','',0),(8077,1,'2024-04-03 14:04:50','2024-04-03 06:04:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\">Cloud</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/customer-experience/\">Customer Experience</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/unified-communications/\">Unified Communication</a></p>		\n			<p><a href=\"https://esigo.co/managed-services/infrastructure/\">Infrastructure</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a></p>		\n			<p><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a></p>','Managed Services','','inherit','closed','closed','','8022-revision-v1','','','2024-04-03 14:04:50','2024-04-03 06:04:50','',8022,'https://esigo.futuremediatrix.com/?p=8077',0,'revision','',0),(8080,1,'2024-04-09 14:59:41','2024-04-09 06:59:41','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" by Cicero, written in 45 BC.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-09 14:59:41','2024-04-09 06:59:41','',32,'https://esigo.futuremediatrix.com/?p=8080',0,'revision','',0),(8081,1,'2024-04-09 14:59:41','2024-04-09 06:59:41','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" by Cicero, written in 45 BC.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-09 14:59:41','2024-04-09 06:59:41','',32,'https://esigo.futuremediatrix.com/?p=8081',0,'revision','',0),(8082,1,'2024-04-09 14:59:41','2024-04-09 06:59:41','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-09 14:59:41','2024-04-09 06:59:41','',32,'https://esigo.futuremediatrix.com/?p=8082',0,'revision','',0),(8083,1,'2024-04-09 15:00:03','2024-04-09 07:00:03','','public-safety','','inherit','open','closed','','public-safety','','','2024-04-09 15:00:03','2024-04-09 07:00:03','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/public-safety.png',0,'attachment','image/png',0),(8084,1,'2024-04-09 15:01:20','2024-04-09 07:01:20','','pss','','inherit','open','closed','','pss','','','2024-04-09 15:01:20','2024-04-09 07:01:20','',32,'https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/pss.jpg',0,'attachment','image/jpeg',0),(8085,1,'2024-04-09 15:01:30','2024-04-09 07:01:30','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-09 15:01:30','2024-04-09 07:01:30','',32,'https://esigo.futuremediatrix.com/?p=8085',0,'revision','',0);
INSERT INTO `wpsl_posts` VALUES (8086,1,'2024-04-09 15:01:30','2024-04-09 07:01:30','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-09 15:01:30','2024-04-09 07:01:30','',32,'https://esigo.futuremediatrix.com/?p=8086',0,'revision','',0),(8087,1,'2024-04-09 15:01:30','2024-04-09 07:01:30','<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\"  style=\"color:#18191d\">Our Service List</h3>\n                  <h2  style=\"color:#18191d\">Commited to Deliver Top  <br> Quality Services</h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-04.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/cloud/\">Cloud</a>\n				</h2>\n              <p>Managed services on the cloud have become an integral part of modern. businesses\' IT strategies</p>\n                <a href=\"https://esigo.futuremediatrix.com/cloud/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-05.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/customer-experience/\">Customer Experience</a>\n				</h2>\n              <p>Managed services for contact center solutions are revolutionizing customer experience.</p>\n                <a href=\"https://esigo.futuremediatrix.com/customer-experience/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-02.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/unified-communications/\">Unified Communications</a>\n				</h2>\n              <p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication.</p>\n                <a href=\"https://esigo.futuremediatrix.com/unified-communications/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-01.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/infrastructure/\">Infrastructure</a>\n				</h2>\n              <p>Managed services for infrastructure are a lifeline for businesses seeking to streamline their IT operations and maximize efficiency.</p>\n                <a href=\"https://esigo.futuremediatrix.com/infrastructure/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Untitled-1-03.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">Enterprise Security</a>\n				</h2>\n              <p>Managed services for security play a pivotal role in safeguarding organizations against an ever-evolving landscape of cyber threats.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/public-safety.png\" alt=\"service image\">\n                <h2>\n					<a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">Public Safety & Security</a>\n				</h2>\n              <p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions.</p>\n                <a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\">\n					<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n						<path d=\"M20.8491 11.347C20.855 11.3381 20.8602 11.3289 20.8656 11.3198C20.8706 11.3114 20.8759 11.3032 20.8805 11.2946C20.8855 11.2853 20.8897 11.2757 20.8942 11.2663C20.8984 11.2573 20.9029 11.2484 20.9067 11.2392C20.9105 11.23 20.9136 11.2206 20.9169 11.2113C20.9205 11.2014 20.9243 11.1916 20.9274 11.1814C20.9302 11.1721 20.9322 11.1626 20.9346 11.1532C20.9372 11.1429 20.9401 11.1327 20.9422 11.1222C20.9444 11.1113 20.9456 11.1003 20.9472 11.0894C20.9485 11.0801 20.9503 11.0711 20.9512 11.0617C20.9532 11.0415 20.9543 11.0213 20.9543 11.001C20.9543 11.0007 20.9543 11.0004 20.9543 11.0001C20.9543 10.9998 20.9543 10.9994 20.9543 10.9991C20.9542 10.9789 20.9532 10.9586 20.9512 10.9384C20.9503 10.929 20.9485 10.92 20.9472 10.9108C20.9456 10.8998 20.9444 10.8888 20.9422 10.8779C20.9401 10.8674 20.9372 10.8572 20.9346 10.8469C20.9322 10.8375 20.9302 10.828 20.9274 10.8187C20.9243 10.8086 20.9205 10.7988 20.9169 10.7889C20.9136 10.7795 20.9105 10.7701 20.9067 10.7609C20.9029 10.7517 20.8984 10.7428 20.8941 10.7338C20.8897 10.7244 20.8855 10.7148 20.8805 10.7055C20.8759 10.6969 20.8706 10.6887 20.8656 10.6803C20.8602 10.6712 20.855 10.662 20.8491 10.6531C20.8428 10.6438 20.8359 10.635 20.8292 10.6261C20.8237 10.6187 20.8186 10.6112 20.8127 10.604C20.7996 10.588 20.7858 10.5727 20.7713 10.5581L15.026 4.81285C14.7819 4.56877 14.3862 4.56877 14.1421 4.81285C13.898 5.05692 13.898 5.45264 14.1421 5.69672L18.8204 10.375L0.88388 10.375C0.53871 10.375 0.258878 10.6548 0.258878 11C0.258878 11.3452 0.53871 11.625 0.88388 11.625L18.8204 11.625L14.1421 16.3033C13.8981 16.5474 13.8981 16.9431 14.1421 17.1872C14.3862 17.4312 14.7819 17.4313 15.026 17.1872L20.7713 11.442C20.7858 11.4274 20.7996 11.4121 20.8127 11.3962C20.8186 11.389 20.8237 11.3814 20.8292 11.374C20.8359 11.3651 20.8428 11.3563 20.8491 11.347Z\" fill=\"currentColor\"/>\n					</svg>  \n                </a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_4.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_5.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_1.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_3.svg)\"></a>\n				<a href=\"#\" target=\"_blank\" rel=\"noopener\"><img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/brand_2.svg)\"></a>\n		<!-- Start Testimonial Section -->\n		<section style=\"background-image:url(https://bizmax.laralink.com/wp-content/uploads/2023/07/testimonial_bg.jpeg);\">\n						<h3 data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Testimonial</h3>\n						<h2>What They’re Saying?</h2>\n						<p><p>Providing legal advice, contract drafting, compliance assistance, intellectual property protection, and other legal support for businesses.</p></p>\n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M0.461063 4.4077H19.538C19.7649 4.4077 19.9482 4.22437 19.9482 3.99745C19.9482 3.77052 19.7649 3.58719 19.538 3.58719H1.45209L3.94183 1.09745C4.10209 0.937189 4.10209 0.676933 3.94183 0.516677C3.78158 0.35642 3.52132 0.35642 3.36106 0.516677L0.170038 3.7077C0.0520878 3.82565 0.0174732 4.00129 0.0815754 4.15514C0.145678 4.3077 0.295677 4.4077 0.461063 4.4077Z\" fill=\"black\"/>\n								<path d=\"M3.65549 7.60253C3.76062 7.60253 3.86575 7.56278 3.94524 7.48202C4.10549 7.32176 4.10549 7.0615 3.94524 6.90125L0.750365 3.70637C0.590108 3.54612 0.329853 3.54612 0.169597 3.70637C0.00934029 3.86663 0.00934029 4.12689 0.169597 4.28714L3.36447 7.48202C3.44524 7.56278 3.55036 7.60253 3.65549 7.60253Z\" fill=\"black\"/>\n							</svg>             \n							<svg width=\"20\" height=\"8\" viewBox=\"0 0 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n								<path d=\"M19.5389 4.4077H0.462014C0.235091 4.4077 0.0517578 4.22437 0.0517578 3.99745C0.0517578 3.77052 0.235091 3.58719 0.462014 3.58719H18.5479L16.0582 1.09745C15.8979 0.937189 15.8979 0.676933 16.0582 0.516677C16.2184 0.35642 16.4787 0.35642 16.6389 0.516677L19.83 3.7077C19.9479 3.82565 19.9825 4.00129 19.9184 4.15514C19.8543 4.3077 19.7043 4.4077 19.5389 4.4077Z\" fill=\"#18191D\"/>\n								<path d=\"M16.3445 7.60253C16.2394 7.60253 16.1342 7.56278 16.0548 7.48202C15.8945 7.32176 15.8945 7.0615 16.0548 6.90125L19.2496 3.70637C19.4099 3.54612 19.6701 3.54612 19.8304 3.70637C19.9907 3.86663 19.9907 4.12689 19.8304 4.28714L16.6355 7.48202C16.5548 7.56278 16.4496 7.60253 16.3445 7.60253Z\" fill=\"#18191D\"/>\n							</svg>          \n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_3.png\" alt=\"Peter Johnson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Peter Johnson</h3>\n								<p>Web developer</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_4.png\" alt=\"Max Lawrence\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Max Lawrence</h3>\n								<p>Digital marketing</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_1.png\" alt=\"Darlene Robertson\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Darlene Robertson</h3>\n								<p>Web design</p>\n										<img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/avatar_2.png\" alt=\"Carol McCarthy\">\n								<p>I\'ve been using [business name] for the past year and I\'m so glad I did. Their products and services are top-notch and their customer service is amazing. I would highly recommend them to anyone</p>\n								<h3>Carol McCarthy</h3>\n								<p>Product manager</p>\n		</section>','Managed Services','','inherit','closed','closed','','32-revision-v1','','','2024-04-09 15:01:30','2024-04-09 07:01:30','',32,'https://esigo.futuremediatrix.com/?p=8087',0,'revision','',0),(8088,1,'2024-04-09 15:05:55','2024-04-09 07:05:55','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1400619\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1327200\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1369218\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target495635\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Public Safety & Security','','inherit','closed','closed','','8052-revision-v1','','','2024-04-09 15:05:55','2024-04-09 07:05:55','',8052,'https://esigo.futuremediatrix.com/?p=8088',0,'revision','',0),(8089,1,'2024-04-09 15:05:55','2024-04-09 07:05:55','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1363\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg\" alt=\"Security\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-300x160.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1024x545.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-768x409.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-1536x818.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1669180291-2048x1091.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1400619\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1327200\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1369218\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target495635\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Public Safety & Security','','inherit','closed','closed','','8052-revision-v1','','','2024-04-09 15:05:55','2024-04-09 07:05:55','',8052,'https://esigo.futuremediatrix.com/?p=8089',0,'revision','',0),(8090,1,'2024-04-09 15:05:55','2024-04-09 07:05:55','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-5e8d886\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"602\" height=\"337\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/pss.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/pss.jpg 602w, https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/pss-300x168.jpg 300w\" sizes=\"(max-width: 602px) 100vw, 602px\" />															\n			<h2>Business & finance</h2>		\n		<p>Unified communication, surveillance, and command and control systems form the backbone of modern public safety and security solutions. These integrated systems enable seamless communication and coordination among first responders, law enforcement, and public safety agencies, ensuring swift and efficient responses to emergencies and threats. Through unified communication, critical information can be shared instantly across different platforms and devices, breaking down barriers between agencies and enabling collaborative decision-making. Surveillance systems play a crucial role in monitoring public spaces, identifying potential threats, and providing real-time data that enhances situational awareness. Meanwhile, command and control systems integrate this information, offering a centralised hub for decision-making and resource allocation. By leveraging advanced technologies such as artificial intelligence and data analytics, these systems can predict potential incidents, optimise response strategies, and ensure that the right resources are deployed at the right time. Together, unified communication, surveillance, and command and control systems offer a holistic approach to public safety, enhancing the ability of cities and communities to protect their citizens and respond effectively to any crisis.</p>		\n			<h2>Partners</h2>		\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Morphisec_Logo.jpg\">                                  \n            <h2></h2>\n                <img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/Microsoft-Logo.wine_.svg\">                                  \n            <h2></h2>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1416094\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1455364\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2023633\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target759444\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Public Safety & Security','','inherit','closed','closed','','8052-revision-v1','','','2024-04-09 15:05:55','2024-04-09 07:05:55','',8052,'https://esigo.futuremediatrix.com/?p=8090',0,'revision','',0),(8091,1,'2024-04-09 15:23:09','2024-04-09 07:23:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"178\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2298168\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1924417\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target199240\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1202841\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-09 15:23:09','2024-04-09 07:23:09','',7315,'https://esigo.futuremediatrix.com/?p=8091',0,'revision','',0),(8092,1,'2024-04-09 15:23:09','2024-04-09 07:23:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/security/\" itemprop=\"url\" class = \"hfe-menu-item\">Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5650-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5650\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5650-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n	<h2>Quick Contact\n	</h2>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name\" value=\"\" type=\"text\" name=\"your-name\" />\n				</p>\n				<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n				</p>\n				<p><textarea cols=\"40\" rows=\"10\" aria-invalid=\"false\" placeholder=\"Message here ...\" name=\"your-message\"></textarea>\n				</p>\n			<p><button>Send A Message</button>\n			</p>\n<p style=\"display: none !important;\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"178\"/></p>\n</form>\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2298168\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1924417\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target199240\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1202841\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-09 15:23:09','2024-04-09 07:23:09','',7315,'https://esigo.futuremediatrix.com/?p=8092',0,'revision','',0),(8093,1,'2024-04-09 15:23:09','2024-04-09 07:23:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n		<p><strong>Management Portal for Related Services</strong></p><p>Hosted PSTN  Services for Zoom - <a href=\"https://zoom.esigo.co\">https://zoom.esigo.co</a></p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target86214\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target737907\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target871505\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1058339\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-09 15:23:09','2024-04-09 07:23:09','',7315,'https://esigo.futuremediatrix.com/?p=8093',0,'revision','',0),(8096,1,'2024-04-12 10:06:35','2024-04-12 02:06:35','','Management Portal for Related Services​','','inherit','open','closed','','picture1-2','','','2024-04-12 10:13:21','2024-04-12 02:13:21','',0,'https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1.png',0,'attachment','image/png',0),(8097,1,'2024-04-12 10:12:08','2024-04-12 02:12:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n		<p><strong>Management Portal for Related Services</strong></p><p>Hosted PSTN  Services for Zoom - <a href=\"https://zoom.esigo.co\">https://zoom.esigo.co</a></p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target86214\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target737907\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target871505\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1058339\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:12:08','2024-04-12 02:12:08','',7315,'https://esigo.futuremediatrix.com/?p=8097',0,'revision','',0),(8098,1,'2024-04-12 10:12:08','2024-04-12 02:12:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n		<p><strong>Management Portal for Related Services</strong></p><p>Hosted PSTN  Services for Zoom - <a href=\"https://zoom.esigo.co\">https://zoom.esigo.co</a></p><blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target86214\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target737907\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target871505\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1058339\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:12:08','2024-04-12 02:12:08','',7315,'https://esigo.futuremediatrix.com/?p=8098',0,'revision','',0),(8099,1,'2024-04-12 10:12:09','2024-04-12 02:12:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Picture1\" alt=\"Picture1\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2109126\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2218118\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target394586\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2064558\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:12:09','2024-04-12 02:12:09','',7315,'https://esigo.futuremediatrix.com/?p=8099',0,'revision','',0),(8100,1,'2024-04-12 10:12:24','2024-04-12 02:12:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Picture1\" alt=\"Picture1\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2109126\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2218118\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target394586\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2064558\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:12:24','2024-04-12 02:12:24','',7315,'https://esigo.futuremediatrix.com/?p=8100',0,'revision','',0),(8101,1,'2024-04-12 10:12:24','2024-04-12 02:12:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Picture1\" alt=\"Picture1\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2109126\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2218118\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target394586\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2064558\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:12:24','2024-04-12 02:12:24','',7315,'https://esigo.futuremediatrix.com/?p=8101',0,'revision','',0),(8102,1,'2024-04-12 10:12:24','2024-04-12 02:12:24','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Picture1\" alt=\"Picture1\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2171303\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target366175\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1686754\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1010485\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:12:24','2024-04-12 02:12:24','',7315,'https://esigo.futuremediatrix.com/?p=8102',0,'revision','',0),(8103,1,'2024-04-12 10:12:32','2024-04-12 02:12:32','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Picture1\" alt=\"Picture1\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2171303\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target366175\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1686754\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1010485\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:12:32','2024-04-12 02:12:32','',7315,'https://esigo.futuremediatrix.com/?p=8103',0,'revision','',0),(8104,1,'2024-04-12 10:12:32','2024-04-12 02:12:32','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Picture1\" alt=\"Picture1\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2171303\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target366175\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1686754\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1010485\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:12:32','2024-04-12 02:12:32','',7315,'https://esigo.futuremediatrix.com/?p=8104',0,'revision','',0),(8105,1,'2024-04-12 10:12:33','2024-04-12 02:12:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Picture1\" alt=\"Picture1\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2070887\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1395054\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1919206\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1463457\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:12:33','2024-04-12 02:12:33','',7315,'https://esigo.futuremediatrix.com/?p=8105',0,'revision','',0),(8106,1,'2024-04-12 10:13:25','2024-04-12 02:13:25','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Picture1\" alt=\"Picture1\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2070887\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1395054\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1919206\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1463457\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:13:25','2024-04-12 02:13:25','',7315,'https://esigo.futuremediatrix.com/?p=8106',0,'revision','',0),(8107,1,'2024-04-12 10:13:25','2024-04-12 02:13:25','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Picture1\" alt=\"Picture1\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2070887\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1395054\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1919206\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1463457\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:13:25','2024-04-12 02:13:25','',7315,'https://esigo.futuremediatrix.com/?p=8107',0,'revision','',0),(8108,1,'2024-04-12 10:13:25','2024-04-12 02:13:25','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target115650\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target918364\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1139763\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target607177\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:13:25','2024-04-12 02:13:25','',7315,'https://esigo.futuremediatrix.com/?p=8108',0,'revision','',0),(8109,1,'2024-04-12 10:13:49','2024-04-12 02:13:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target115650\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target918364\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1139763\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target607177\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:13:49','2024-04-12 02:13:49','',7315,'https://esigo.futuremediatrix.com/?p=8109',0,'revision','',0),(8110,1,'2024-04-12 10:13:49','2024-04-12 02:13:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2024/04/Picture1-150x150.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target115650\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target918364\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1139763\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target607177\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:13:49','2024-04-12 02:13:49','',7315,'https://esigo.futuremediatrix.com/?p=8110',0,'revision','',0),(8111,1,'2024-04-12 10:13:49','2024-04-12 02:13:49','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/Picture1-qmkx0vdfek470jbygtq39uirxd7revn81ekpvvukl4.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target846242\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1688571\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2185698\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2251276\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:13:49','2024-04-12 02:13:49','',7315,'https://esigo.futuremediatrix.com/?p=8111',0,'revision','',0),(8112,1,'2024-04-12 10:14:06','2024-04-12 02:14:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/Picture1-qmkx0vdfek470jbygtq39uirxd7revn81ekpvvukl4.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target846242\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1688571\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2185698\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2251276\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:14:06','2024-04-12 02:14:06','',7315,'https://esigo.futuremediatrix.com/?p=8112',0,'revision','',0),(8113,1,'2024-04-12 10:14:06','2024-04-12 02:14:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/Picture1-qmkx0vdfek470jbygtq39uirxd7revn81ekpvvukl4.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target846242\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1688571\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2185698\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2251276\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:14:06','2024-04-12 02:14:06','',7315,'https://esigo.futuremediatrix.com/?p=8113',0,'revision','',0),(8114,1,'2024-04-12 10:14:06','2024-04-12 02:14:06','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/Picture1-qmkx0vde6pbrej681wux5roew104r4fi5lzjqhdck0.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target724826\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target638058\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1392760\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target501463\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:14:06','2024-04-12 02:14:06','',7315,'https://esigo.futuremediatrix.com/?p=8114',0,'revision','',0),(8115,1,'2024-04-12 10:14:40','2024-04-12 02:14:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/Picture1-qmkx0vde6pbrej681wux5roew104r4fi5lzjqhdck0.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target724826\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target638058\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1392760\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target501463\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:14:40','2024-04-12 02:14:40','',7315,'https://esigo.futuremediatrix.com/?p=8115',0,'revision','',0),(8116,1,'2024-04-12 10:14:40','2024-04-12 02:14:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/Picture1-qmkx0vde6pbrej681wux5roew104r4fi5lzjqhdck0.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target724826\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target638058\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1392760\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target501463\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:14:40','2024-04-12 02:14:40','',7315,'https://esigo.futuremediatrix.com/?p=8116',0,'revision','',0),(8117,1,'2024-04-12 10:14:40','2024-04-12 02:14:40','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>All SERVICES</h2>		\n					Menu\n				<nav itemscope=\"itemscope\" itemtype=\"http://schema.org/SiteNavigationElement\" data-toggle-icon=\"\" data-close-icon=\"\" data-full-width=\"\"><ul id=\"menu-1-e5c2543\"><li id=\"menu-item-5622\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/cloud/\" itemprop=\"url\" class = \"hfe-menu-item\">Cloud</a></li>\n<li id=\"menu-item-7299\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/customer-experience/\" itemprop=\"url\" class = \"hfe-menu-item\">Customer Experience</a></li>\n<li id=\"menu-item-7321\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/unified-communications/\" itemprop=\"url\" class = \"hfe-menu-item\">Unified Communications</a></li>\n<li id=\"menu-item-7306\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/infrastructure/\" itemprop=\"url\" class = \"hfe-menu-item\">Infrastructure</a></li>\n<li id=\"menu-item-7314\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/enterprise-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Enterprise Security</a></li>\n<li id=\"menu-item-8058\" itemprop=\"name\"><a href=\"https://esigo.futuremediatrix.com/managed-services/public-safety-and-security/\" itemprop=\"url\" class = \"hfe-menu-item\">Public Safety &#038; Security</a></li>\n</ul></nav>\n                   <img src=\"https://bizmax.laralink.com/wp-content/uploads/2023/07/1-2.png\" alt=\"Have Any Query Feel Free Contact\">           \n                <h2>Have Any Query Feel Free Contact</h2>\n                <a href=\"https://bizmax.laralink.com/contact/\">Contact Us</a>\n			<p><strong>Error:</strong> Contact form not found.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2560\" height=\"1707\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg\" alt=\"Unified Communications\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-scaled.jpg 2560w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-300x200.jpg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1024x683.jpg 1024w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-768x512.jpg 768w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-1536x1024.jpg 1536w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/09/shutterstock_1851636526-2048x1366.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Business & finance</h2>		\n		<p>Managed services for unified communications (UC) are a game-changer in the realm of modern business communication. These services provide organizations with a comprehensive solution for integrating various communication channels, including voice, video, messaging, and collaboration tools, into a seamless and efficient platform. By partnering with managed service providers, companies can streamline UC deployment and management, ensuring consistent connectivity and functionality across your workforce. ESIGO’s managed UC services handle everything from software updates and user support to network optimization, enhancing productivity and reducing downtime. This approach enables your businesses to adapt quickly to changing communication needs while offloading the complexities of UC management to experts, allowing you to focus on you core business objectives.</p>		\n															<img width=\"355\" height=\"345\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/10/unified-communication-355x345.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h2>Management Portal for Related Services</h2>		\n																<a href=\"https://zoom.esigo.co\">\n							<img src=\"https://esigo.futuremediatrix.com/wp-content/uploads/elementor/thumbs/Picture1-qmkx0vddkrxjlj3cugfc3q98dcwbf8tn7poyns4qjg.png\" title=\"Management Portal for Related Services​\" alt=\"Management Portal for Related Services​\" loading=\"lazy\" />								</a>\n		<blockquote><p>“ Lorem Ipsum is simply free text not dummy available typesetting industry been the industry standard Lorem ipsum is simply free text ”</p></blockquote>		\n															<img width=\"625\" height=\"624\" src=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2.jpeg 625w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-300x300.jpeg 300w, https://esigo.futuremediatrix.com/wp-content/uploads/2023/07/service-details-img-2-150x150.jpeg 150w\" sizes=\"(max-width: 625px) 100vw, 625px\" />															\n			<h2>Our benefits</h2>		\n		<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam.</p>		\n			frequently asked questions		\n			<h2>Questions & Answers</h2>		\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 \n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1443221\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								What services does your business provide?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target2088626\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How much do your services cost?\n							</h2>\nOur pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target309584\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								Do you offer any guarantees or refunds?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>\n							<h2 class=\"cs_accordian_title cs_transition_3 cs_fs_16 fw-medium m-0 cs_pl_25 cs_pt_18 cs_pb_18 w-100 text-start cs_pr_35 collapsed\n							\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#target1347200\" aria-expanded=\"true\" aria-controls=\"collapseOne\">\n								How do I get started with your services?\n							</h2>\n									<p>Our pricing varies depending on the specific services you require and the scope of your project. We offer customized solutions to fit each client\'s unique needs and budget. Please contact us.</p>','Unified Communications','','inherit','closed','closed','','7315-revision-v1','','','2024-04-12 10:14:40','2024-04-12 02:14:40','',7315,'https://esigo.futuremediatrix.com/?p=8117',0,'revision','',0);
/*!40000 ALTER TABLE `wpsl_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_term_relationships`
--

DROP TABLE IF EXISTS `wpsl_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_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,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_term_relationships`
--

LOCK TABLES `wpsl_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpsl_term_relationships` DISABLE KEYS */;
INSERT INTO `wpsl_term_relationships` VALUES (87,13,0),(756,13,0),(758,13,0),(760,13,0),(762,13,0),(763,13,0),(768,13,0),(1042,12,0),(2018,13,0),(2019,13,0),(3014,13,0),(5622,15,0),(6028,13,0),(6522,13,0),(6523,13,0),(6537,13,0),(6538,13,0),(6600,14,0),(6838,16,0),(6866,16,0),(6880,16,0),(6883,21,0),(6911,21,0),(6917,21,0),(6923,21,0),(7074,19,0),(7218,20,0),(7235,20,0),(7243,20,0),(7249,20,0),(7299,15,0),(7306,15,0),(7314,15,0),(7321,15,0),(7592,31,0),(7592,33,0),(7790,20,0),(8022,32,0),(8025,31,0),(8025,33,0),(8026,31,0),(8026,33,0),(8031,32,0),(8058,15,0);
/*!40000 ALTER TABLE `wpsl_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_term_taxonomy`
--

DROP TABLE IF EXISTS `wpsl_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_term_taxonomy`
--

LOCK TABLES `wpsl_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpsl_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpsl_term_taxonomy` VALUES (1,1,'category','',0,0),(7,7,'post_tag','',0,0),(8,8,'post_tag','',0,0),(9,9,'post_tag','',0,0),(10,10,'post_tag','',0,0),(11,11,'post_tag','',0,0),(12,12,'elementor_library_type','',0,0),(13,13,'nav_menu','',0,15),(14,14,'nav_menu','',0,1),(15,15,'nav_menu','',0,6),(16,16,'elementor_library_type','',0,1),(17,17,'post_tag','',0,0),(18,18,'post_tag','',0,0),(19,19,'elementor_library_type','',0,1),(20,20,'category','',0,5),(21,21,'category','',0,4),(22,22,'wpcode_type','',0,0),(23,23,'wpcode_location','',0,0),(24,24,'wpcode_tags','',0,0),(25,25,'wpcode_tags','',0,0),(26,26,'wpcode_type','',0,0),(27,27,'wpcode_location','',0,0),(28,28,'wpcode_tags','',0,0),(29,29,'wpcode_tags','',0,0),(30,30,'wpcode_type','',0,0),(31,31,'wpcode_location','',0,3),(32,32,'elementor_library_type','',0,1),(33,33,'wpcode_type','',0,3);
/*!40000 ALTER TABLE `wpsl_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_termmeta`
--

DROP TABLE IF EXISTS `wpsl_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_termmeta`
--

LOCK TABLES `wpsl_termmeta` WRITE;
/*!40000 ALTER TABLE `wpsl_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_terms`
--

DROP TABLE IF EXISTS `wpsl_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_terms`
--

LOCK TABLES `wpsl_terms` WRITE;
/*!40000 ALTER TABLE `wpsl_terms` DISABLE KEYS */;
INSERT INTO `wpsl_terms` VALUES (1,'Uncategorized','uncategorized',0),(7,'Development','development',0),(8,'Envato','envato',0),(9,'freelance','freelance',0),(10,'Technology','technology',0),(11,'Wordpress','wordpress',0),(12,'section','section',0),(13,'Defualt Menu','defualt-menu',0),(14,'Important Links','important-links',0),(15,'Services Menu','services-menu',0),(16,'loop-item','loop-item',0),(17,'i.','i',0),(18,'https://www.channelasia.tech/article/671033/asean-embraces-managed-services-expect-channel-m-rise/','https-www-channelasia-tech-article-671033-asean-embraces-managed-services-expect-channel-m-rise',0),(19,'page','page',0),(20,'News and Events','news-and-events',0),(21,'Article','article',0),(22,'text','text',0),(23,'after_paragraph','after_paragraph',0),(24,'sample','sample',0),(25,'message','message',0),(26,'php','php',0),(27,'everywhere','everywhere',0),(28,'disable','disable',0),(29,'comments','comments',0),(30,'js','js',0),(31,'site_wide_header','site_wide_header',0),(32,'popup','popup',0),(33,'html','html',0);
/*!40000 ALTER TABLE `wpsl_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_tm_taskmeta`
--

DROP TABLE IF EXISTS `wpsl_tm_taskmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_tm_taskmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `task_id` bigint(20) NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `task_id` (`task_id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_tm_taskmeta`
--

LOCK TABLES `wpsl_tm_taskmeta` WRITE;
/*!40000 ALTER TABLE `wpsl_tm_taskmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_tm_taskmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_tm_tasks`
--

DROP TABLE IF EXISTS `wpsl_tm_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_tm_tasks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `type` varchar(300) NOT NULL,
  `class_identifier` varchar(300) DEFAULT '0',
  `attempts` int(11) DEFAULT 0,
  `description` varchar(300) DEFAULT NULL,
  `time_created` timestamp NOT NULL DEFAULT current_timestamp(),
  `last_locked_at` bigint(20) DEFAULT 0,
  `status` varchar(300) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_tm_tasks`
--

LOCK TABLES `wpsl_tm_tasks` WRITE;
/*!40000 ALTER TABLE `wpsl_tm_tasks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_tm_tasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_usermeta`
--

DROP TABLE IF EXISTS `wpsl_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_usermeta`
--

LOCK TABLES `wpsl_usermeta` WRITE;
/*!40000 ALTER TABLE `wpsl_usermeta` DISABLE KEYS */;
INSERT INTO `wpsl_usermeta` VALUES (1,1,'nickname','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,'wpsl_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpsl_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice,text_widget_paste_html'),(15,1,'show_welcome_panel','0'),(17,1,'wpsl_dashboard_quick_press_last_post_id','8118'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"180.248.5.0\";}'),(19,1,'header-footer-elementor-rating','delayed-notice'),(20,1,'elementor_introduction','a:3:{s:27:\"ai-get-started-announcement\";b:1;s:7:\"exit_to\";b:1;s:20:\"globals_introduction\";b:1;}'),(21,1,'announcements_user_counter','1'),(22,1,'wpsl_persisted_preferences','a:3:{s:14:\"core/edit-post\";a:6:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:5:{i:0;s:11:\"post-status\";i:1;s:14:\"featured-image\";i:2;s:12:\"post-excerpt\";i:3;s:16:\"discussion-panel\";i:4;s:23:\"taxonomy-panel-category\";}s:12:\"fixedToolbar\";b:0;s:9:\"focusMode\";b:0;s:10:\"editorMode\";s:6:\"visual\";}s:9:\"_modified\";s:24:\"2023-09-21T05:25:39.623Z\";s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}}'),(23,1,'wpsl_user-settings','libraryContent=browse&editor=tinymce&hidetb=1'),(24,1,'wpsl_user-settings-time','1695195135'),(25,1,'wpsl_elementor_connect_common_data','a:3:{s:9:\"client_id\";s:32:\"brXdrm7LgzbTP5bsFm2Z9w7SOXOVUvjN\";s:11:\"auth_secret\";s:32:\"3BGxbziF9aR4VeHQmVSCPjYoEsJ2kKbu\";s:5:\"state\";s:12:\"xEVTCDiRiAZf\";}'),(26,1,'enable_custom_fields','1'),(27,1,'closedpostboxes_post','a:0:{}'),(28,1,'metaboxhidden_post','a:0:{}'),(29,1,'meta-box-order_post','a:3:{s:6:\"normal\";s:10:\"postcustom\";s:8:\"advanced\";s:51:\"bizmax_wp_blog_options,bizmax_wp_breadcrumb_options\";s:4:\"side\";s:0:\"\";}'),(30,1,'nav_menu_recently_edited','13'),(31,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(32,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(33,1,'closedpostboxes_page','a:1:{i:0;s:23:\"wpcode-metabox-snippets\";}'),(34,1,'metaboxhidden_page','a:0:{}'),(36,1,'session_tokens','a:1:{s:64:\"cee83c6e39c5cde48236b8f4268f6783757adf7bb87cd0886b7362c0b1660d81\";a:4:{s:10:\"expiration\";i:1713979423;s:2:\"ip\";s:13:\"180.248.5.130\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";s:5:\"login\";i:1713806623;}}'),(37,1,'wpcode_snippet_activate_notice_shown','1');
/*!40000 ALTER TABLE `wpsl_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_users`
--

DROP TABLE IF EXISTS `wpsl_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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 '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_users`
--

LOCK TABLES `wpsl_users` WRITE;
/*!40000 ALTER TABLE `wpsl_users` DISABLE KEYS */;
INSERT INTO `wpsl_users` VALUES (1,'admin','$P$BPo/cZGRJe9BTmCebvdNzU0Jeu0zv6.','admin','chan.sh@esigo.co','https://esigo.futuremediatrix.com','2023-08-23 03:24:32','',0,'admin');
/*!40000 ALTER TABLE `wpsl_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_wpmailsmtp_debug_events`
--

DROP TABLE IF EXISTS `wpsl_wpmailsmtp_debug_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_wpmailsmtp_debug_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `content` text DEFAULT NULL,
  `initiator` text DEFAULT NULL,
  `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_wpmailsmtp_debug_events`
--

LOCK TABLES `wpsl_wpmailsmtp_debug_events` WRITE;
/*!40000 ALTER TABLE `wpsl_wpmailsmtp_debug_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpsl_wpmailsmtp_debug_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpsl_wpmailsmtp_tasks_meta`
--

DROP TABLE IF EXISTS `wpsl_wpmailsmtp_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpsl_wpmailsmtp_tasks_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `action` varchar(255) NOT NULL,
  `data` longtext NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpsl_wpmailsmtp_tasks_meta`
--

LOCK TABLES `wpsl_wpmailsmtp_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wpsl_wpmailsmtp_tasks_meta` DISABLE KEYS */;
INSERT INTO `wpsl_wpmailsmtp_tasks_meta` VALUES (1,'wp_mail_smtp_admin_notifications_update','W10=','2023-10-26 09:50:37');
/*!40000 ALTER TABLE `wpsl_wpmailsmtp_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2024-07-03  4:53:43
